Skip to content

feat: switch to include directives in pg_hba - #1765

Open
staaldraad wants to merge 7 commits into
developfrom
etienne/sec-493-switch-pg_hba-to-use-include-directive
Open

feat: switch to include directives in pg_hba#1765
staaldraad wants to merge 7 commits into
developfrom
etienne/sec-493-switch-pg_hba-to-use-include-directive

Conversation

@staaldraad

@staaldraad staaldraad commented Aug 15, 2025

Copy link
Copy Markdown
Member

Using include directives makes changing the pg_hba.conf on the fly more flexible. Enabling / disabling ssl enforcement for example only requires creating or removing a file, leaving the pg_hba.conf untouched. Allowing for more repeatable and stable processes and no need for regex based replace or custom parsers.

This will also support the just-in-time access work by allowing jit to be dynamically enabled/disabled

⚠️ do not merge yet: requires admin-api update, otherwise ssl enforcement enable/disable will stop functioning

The required admin-api update is included as v0.88.0 added to ansible/vars.yml

Summary by CodeRabbit

  • Improvements

    • PostgreSQL authentication is now version-aware: v15 uses a dedicated HBA configuration, while other versions load modular HBA fragments for flexible access control.
    • New public and user-specific HBA templates add finer-grained connection rules and broaden replication access.
    • Startup and packaging flows updated so the correct HBA configurations are discovered and applied at runtime.
  • Chores

    • PgBouncer and system service handling refined for more consistent deployment behavior.

✏️ Tip: You can customize this high-level summary in your review settings.

@staaldraad

Copy link
Copy Markdown
Member Author

Requires pg16+

@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch from e258813 to 6d11c7d Compare August 19, 2025 07:54
@staaldraad
staaldraad marked this pull request as ready for review August 26, 2025 12:52
@staaldraad
staaldraad requested review from a team as code owners August 26, 2025 12:52
Comment thread ansible/tasks/setup-postgres.yml Outdated
@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch from 7b62c4f to 641951d Compare August 27, 2025 14:08
@staaldraad
staaldraad requested a review from hunleyd August 27, 2025 18:57
@staaldraad staaldraad mentioned this pull request Aug 29, 2025
hunleyd
hunleyd previously requested changes Sep 3, 2025

@hunleyd hunleyd left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm, minus the conflict

@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch from 641951d to 9a840bf Compare September 8, 2025 08:27
@staaldraad
staaldraad dismissed hunleyd’s stale review September 8, 2025 11:11

conflict resolved and rebased to use latest admin_api and admin_mgr as introduced by #1780

@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch from 9a840bf to 4e6292b Compare January 28, 2026 10:55
@coderabbitai

coderabbitai Bot commented Jan 28, 2026

Copy link
Copy Markdown
Contributor

Walkthrough

Adds version-aware PostgreSQL HBA handling: PostgreSQL 15 uses pg_hba.conf_15.j2; other versions use pg_hba.conf.j2 plus modular pg_hba_public.conf.j2 and pg_hba_users_public.conf.j2. Updates Dockerfiles, Ansible tasks, Nix, and runtime scripts to select, copy, and deploy HBA files accordingly.

Changes

Cohort / File(s) Change Summary
Dockerfiles
Dockerfile-15, Dockerfile-17, Dockerfile-orioledb-17
Dockerfile-15 now copies ansible/files/postgresql_config/pg_hba.conf_15.j2; Dockerfile-17 and Dockerfile-orioledb-17 add pg_hba_users_public.conf.j2 and pg_hba_public.conf.j2 (chown postgres:postgres).
HBA templates
ansible/files/postgresql_config/pg_hba.conf.j2, ansible/files/postgresql_config/pg_hba.conf_15.j2, ansible/files/postgresql_config/pg_hba_public.conf.j2, ansible/files/postgresql_config/pg_hba_users_public.conf.j2
Adds pg_hba.conf_15.j2; refactors pg_hba.conf.j2 to use include_if_exists for modular public/SSL/pam includes; adds pg_hba_public.conf.j2 and pg_hba_users_public.conf.j2 with host rules (scram-sha-256).
Ansible tasks
ansible/tasks/setup-postgres.yml, ansible/tasks/setup-pgbouncer.yml
setup-postgres.yml branches on psql_version to deploy either the 15-specific template or the base template plus public/user HBA files; setup-pgbouncer.yml updates pgbouncer user shell, converts many literals to double-quoted strings, expands HBA files in loops, and uses systemd_service with daemon_reload: true.
Release metadata
ansible/vars.yml
Appends -hba suffix to three postgres_release version strings.
Nix build/runtime
nix/packages/lib.nix, nix/packages/default.nix, nix/tools/run-server.sh.in, nix/checks.nix
makePostgresDevSetup signature gains version; conditional paths and copy logic added for version-specific HBA files (use _15 file for version 15, otherwise include public/user HBA files); default.nix and checks.nix expose version; run-server.sh.in added runtime copying behavior for version 15 vs others.

Sequence Diagram(s)

sequenceDiagram
    participant Deployer
    participant VersionDetector as Version Detector
    participant BuildSystem as Nix/Docker
    participant Ansible
    participant ConfigStore as HBA Templates
    participant Postgres

    Deployer->>VersionDetector: Determine Postgres major version
    VersionDetector->>BuildSystem: Provide version (e.g., 15 / other)
    BuildSystem->>Ansible: Trigger provisioning with psql_version
    alt psql_version == 15
        Ansible->>ConfigStore: Select `pg_hba.conf_15.j2`
        Ansible->>Postgres: Deploy `/etc/postgresql/pg_hba.conf` (from _15 template)
    else psql_version != 15
        Ansible->>ConfigStore: Select `pg_hba.conf.j2`, `pg_hba_public.conf.j2`, `pg_hba_users_public.conf.j2`
        Ansible->>Postgres: Deploy `/etc/postgresql/pg_hba.conf` and modular public/user HBA files
    end
    Postgres-->>Deployer: HBA configuration applied
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Possibly related PRs

  • custom pam #1772: Modifies ansible/tasks/setup-postgres.yml to add psql_15 conditionals and version-specific HBA handling — strong overlap.
  • Update nixpkgs #1714: Updates ansible/vars.yml postgres_release entries — related to the version string changes in this PR.

Suggested labels

enhancement

Suggested reviewers

  • samrose
  • hunleyd
  • LGUG2Z
🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the main change: switching pg_hba.conf to use include directives for more flexible configuration management.
Description check ✅ Passed The description explains the rationale, use cases (SSL enforcement, JIT access), and notes dependency on admin-api v0.88.0, though it uses a template placeholder rather than following a specific structure.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
nix/packages/lib.nix (1)

11-18: Fix missing version argument in nix/checks.nix (line 102).

The call to makePostgresDevSetup is missing the required version argument. Add it to the object passed at line 102:

start-postgres-server-bin = pkgs-lib.makePostgresDevSetup {
  inherit pkgs pgroonga;
  name = "start-postgres-server-test";
  version = ""; # or appropriate version value
  extraSubstitutions = {

The call in nix/packages/default.nix correctly passes version = activeVersion.

🤖 Fix all issues with AI agents
In `@ansible/tasks/setup-pgbouncer.yml`:
- Around line 46-52: The pgbouncer user creation task uses ansible.builtin.user
with name "pgbouncer" and has a typo in the shell parameter
("/usr/sbin/nolign"); update the shell value to the correct "/usr/sbin/nologin"
in that task so the pgbouncer user gets the proper non-login shell.

In `@nix/tools/run-server.sh.in`:
- Around line 216-225: The extra HBA glob currently uses pg_hba*.conf* and can
match the base pg_hba.conf and fail when there are no matches; change the logic
in run-server.sh.in: enable nullglob (shopt -s nullglob) before building
extra_hba_files, use the narrower pattern
${PG_HBA_FILE%pg_hba.conf}pg_hba_*.conf to only match include files, iterate and
copy them as before, then restore nullglob (shopt -u nullglob) if needed; ensure
the earlier cp of "${PG_HBA_FILE}" remains and that the new glob will never
duplicate that base file.
🧹 Nitpick comments (3)
ansible/files/postgresql_config/pg_hba_public.conf.j2 (1)

1-2: Non-standard IPv6 notation.

The IPv6 CIDR ::0/0 is functional but the standard notation is ::/0. Consider using ::/0 for consistency with PostgreSQL documentation and broader convention.

Suggested fix
 host  all  all  0.0.0.0/0     scram-sha-256
-host  all  all  ::0/0     scram-sha-256
+host  all  all  ::/0      scram-sha-256
ansible/files/postgresql_config/pg_hba.conf.j2 (1)

34-35: Same IPv6 notation note for replication rules.

Consider ::/0 instead of ::0/0 for consistency.

Suggested fix
 host  replication  supabase_replication_admin  0.0.0.0/0  scram-sha-256
-host  replication  supabase_replication_admin  ::0/0  scram-sha-256
+host  replication  supabase_replication_admin  ::/0   scram-sha-256
ansible/tasks/setup-pgbouncer.yml (1)

112-119: Duplicate entry in loop.

/etc/pgbouncer-custom/ssl-config.ini appears twice in the loop (lines 113 and 117). This is harmless but redundant.

Proposed fix
   loop:
     - /etc/pgbouncer-custom/ssl-config.ini
     - /etc/postgresql/pg_hba.conf
     - /etc/postgresql/pg_hba_users_public.conf
     - /etc/postgresql/pg_hba_public.conf
-    - /etc/pgbouncer-custom/ssl-config.ini

Comment thread ansible/tasks/setup-pgbouncer.yml Outdated
Comment thread nix/tools/run-server.sh.in

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
nix/packages/lib.nix (1)

11-18: Add version parameter to the makePostgresDevSetup call in nix/checks.nix.

The call at nix/checks.nix line 102 is missing the required version parameter. This will fail Nix evaluation. The call in nix/packages/default.nix already includes version = activeVersion; but nix/checks.nix needs the same fix.

🤖 Fix all issues with AI agents
In `@ansible/tasks/setup-pgbouncer.yml`:
- Around line 108-120: The loop in the Ansible task named "Grant pg_hba and
pgbouncer grp perm for adminapi updates" contains a duplicate entry for
"/etc/pgbouncer-custom/ssl-config.ini"; remove the repeated item from the list
in the loop so each path is unique (adjust the array under the loop that uses
loop_var "pgbouncer_group_item"), leaving only one occurrence of
"/etc/pgbouncer-custom/ssl-config.ini".
🧹 Nitpick comments (1)
nix/packages/lib.nix (1)

70-94: Normalize version before comparing to "15".

If version includes a patch/build suffix (e.g., 15.14.x-hba), version == "15" will miss and route PG15 to the include-based config, which the PR notes is unsupported. Consider deriving the major version first.

♻️ Suggested change
-      extraPaths =
-        if version == "15" then
+      extraPaths =
+        let
+          majorVersion = lib.versions.major version;
+        in
+        if majorVersion == "15" then

Comment thread ansible/tasks/setup-pgbouncer.yml
@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch 2 times, most recently from c420bb1 to 088a3d9 Compare January 28, 2026 13:19

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@ansible/tasks/setup-pgbouncer.yml`:
- Around line 108-118: The task "Grant pg_hba and pgbouncer grp perm for
adminapi updates" is trying to set modes on files that don't exist on PG15
hosts; add a conditional to skip the task on PG15 by adding when: not is_psql_15
(same pattern used in the postgres setup block) so the loop over
pgbouncer_group_item (/etc/pgbouncer-custom/ssl-config.ini,
/etc/postgresql/pg_hba.conf, /etc/postgresql/pg_hba_users_public.conf,
/etc/postgresql/pg_hba_public.conf) only runs on non-PG15 hosts.

Comment thread ansible/tasks/setup-pgbouncer.yml Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@nix/tools/run-server.sh.in`:
- Around line 192-195: The script currently prints secret key contents by
echoing and catting the KEY_FILE (KEY_FILE, DATDIR variables); remove the cat
and the "KEY_FILE contents:" echo or gate them behind a debug-only check so
secrets are never printed in normal runs (e.g. replace the two lines with a
conditional that only prints/redacts when DEBUG or VERBOSE is explicitly
enabled, otherwise print "KEY_FILE: [REDACTED]" and keep export KEY_FILE as-is).
Ensure you target the export KEY_FILE, the echo "KEY_FILE:" and cat "$KEY_FILE"
statements for the change.

Comment thread nix/tools/run-server.sh.in
@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch from 088a3d9 to 721d8fe Compare April 7, 2026 07:48
@github-actions

github-actions Bot commented Apr 7, 2026

Copy link
Copy Markdown

PostgreSQL Extension Dependency Analysis: PR #1765

Summary

No extensions had dependencies with MAJOR version updates.

Full Analysis Results

PostgreSQL 15 Extension Dependencies

PostgreSQL 17 Extension Dependencies

OrioleDB 17 Extension Dependencies

@github-actions

github-actions Bot commented Apr 7, 2026

Copy link
Copy Markdown

PostgreSQL Package Dependency Analysis: PR #1765

Summary

No packages had MAJOR version updates.

Full Analysis Results

PostgreSQL 15 Dependency Changes

Extracting PostgreSQL 15 dependencies...

Package Old New Status

Runtime Closure Size

Size
Old 2479.4 MB
New 2479.4 MB
Delta +0.0 MB
Raw Dependency Closure
Old Dependencies (closure: 2479.4 MB):
     0.3 MB  /nix/store/00m5bdick5dx3d4zrpp2njwpwihwbyx2-vector-0.7.0
   107.2 MB  /nix/store/03k5gpwag7aipm25nsxnavp876w22iq1-wrappers-0.6.0
     4.2 MB  /nix/store/04kpg6rvmahpgmhz4dbzad9nm8y1rpvb-ncurses-6.5
     6.1 MB  /nix/store/09xsph5dvy733610lrgn2d4rgc5ibhig-kbd-2.9.0
    27.0 MB  /nix/store/0dbcc92avf23zmdvsw821yrhvqw12s8m-wrappers-0.3.0
     2.9 MB  /nix/store/0fd2vgzg0qlbnsvr3gyhg1wbzsg2k08w-cryptsetup-2.8.1
     6.4 MB  /nix/store/0kfbzhd8qdsxsd4qf9dkpcd3f916krvr-openssl-3.0.13
     3.1 MB  /nix/store/0lfppmdx1bqfg41wydjwl9y3wrp3rih0-pg_graphql-1.2.2
     0.1 MB  /nix/store/0ljg4yw8siyvsivyg457w2skp0bgd4xk-keyutils-1.6.3-lib
     2.1 MB  /nix/store/0pdr7jzay8f9i3zvd3p8wsarzv9f1s26-pg_graphql-1.5.4
    47.0 MB  /nix/store/0sn6rrav001q2n4znjw4v2z7db6yzmxd-wrappers-0.4.3
     0.2 MB  /nix/store/0vmif2nanhgi07807i8bjymqj664xcwd-libpsl-0.21.5
     8.8 MB  /nix/store/0vv7r6ga11vrj29plj027nl78p51s27c-timescaledb-2.9.1
     0.1 MB  /nix/store/0xjy5cr3h59n0ndlh6gxr3glbb83fc3w-pgroonga
     0.3 MB  /nix/store/0zfyfg75jpkf71bxhjb6q8kprpsp77jb-pgsodium-3.1.6
    41.5 MB  /nix/store/10pd749c2v3m35d4hk5xdfylyfr1hzqz-glibc-2.39-5
     0.1 MB  /nix/store/1199b79za82dwv1nbnjz8bpa08h8vc4l-hypopg
   104.1 MB  /nix/store/161vd1b5491ijhf1s9sykwhahdj8423i-wrappers-0.5.5
     0.2 MB  /nix/store/18lyymxzwh03jsj9q7zdq3lpa1jdnr94-pg_net-0.19.5
     0.1 MB  /nix/store/1c83g5czi5r2913g5pbcwba3a8jps2in-wal2json
     0.3 MB  /nix/store/1lv80gcbfjf70ikxp3mffbvk8mi7hlpn-pgsodium-3.1.5
     0.3 MB  /nix/store/1m2pfwirwdq1cy28v2scw57ry5aji017-kmod-31
     0.3 MB  /nix/store/1n168y3gxdn8b4jrfk5m9m71hq3xm2am-util-linux-minimal-2.41.2-mount
     0.7 MB  /nix/store/1qhz8fshzn41sk26pyvc30cpg7b837cf-gmp-with-cxx-6.3.0
     2.0 MB  /nix/store/1rd6vhxhfblbk3dddi636xjw3avs5z0p-pcre2-10.46
     0.2 MB  /nix/store/1snbg7fzx1bv5lpqxr7icn3mm6qan6pc-attr-2.5.2
     0.9 MB  /nix/store/21kidlr3lklamslvsa3pc78y3kdha61h-pgroonga-3.2.5
     1.9 MB  /nix/store/27g206wjs60cdzsvxvv6ncpcjprk8d6r-libjpeg-turbo-3.1.3
     0.1 MB  /nix/store/2a7sd83gzx6nz4qsijixh3kwq1i0jqrl-pg_repack
     0.8 MB  /nix/store/2axy9bdn36c0pwrs7yh9igw8807c7irs-postgresql-and-plugins-15.14
     0.1 MB  /nix/store/2b5c1ql40la8701vqjap0xz9ij0rysm7-pg_cron
     0.1 MB  /nix/store/2brsh5disikvcvhgnxibg7hm5ybhww1r-receipt
     0.3 MB  /nix/store/2dsn4zffda2ivz2f5mxlwpfi8mb1w9yf-systemd-258.2-dev
     0.1 MB  /nix/store/2p2xn5jmx50856f0fvn7sd8zzz9lypfd-pg_tle
     0.4 MB  /nix/store/2p5qjk1lznfc13qwn2skc264zgh4c3xg-expat-2.7.3
     0.1 MB  /nix/store/2wqm7ivl04f10r6hxvi91w8s0mfaa3j8-hypopg-1.4.1
     8.0 MB  /nix/store/2xajxybfa64wsxpcwrndwlbyizpykn60-pg_partman-5.3.1
     0.1 MB  /nix/store/31blwigfmra9kcxqhkynddzvyggqqb3p-pgjwt-0.2.0
     0.5 MB  /nix/store/36ilshys1vqzxy98lwpg1mxl3gv2c717-libpwquality-1.4.5-lib
     0.2 MB  /nix/store/397hikj37spr81f8yypxpjgf8vs27sii-libxcrypt-4.5.2
     3.5 MB  /nix/store/3bjs7nyh11nn52zg36r7lkmaxkyac1hb-pg_jsonschema-0.2.0
     0.3 MB  /nix/store/3dj2qaaq9mvkri2kphq4gjfbscksi6fy-nghttp3-1.13.1
     1.9 MB  /nix/store/3jdf9aw58nkncyw3d3x36pb37p39k4ia-libunistring-1.1
     1.3 MB  /nix/store/3n15dmd4y0dhplwbx655w4nj1imgr5z7-libfido2-1.16.0
     0.2 MB  /nix/store/40yir8lhldzaxhzfyly5yn2fs6hw5mgi-pg_cron-1.5.2
     0.3 MB  /nix/store/45kspcpwdz33am1szf9910dg2kakxsh5-libpsl-0.21.5
     1.4 MB  /nix/store/4c3h42lwbxr9ibm39v9j8lp5r305bhwj-gnupg-2.4.8
     0.6 MB  /nix/store/4cnn303h6rgfzy0fx0vdyf4p4qhrrhhp-pgroonga-3.0.7
     0.2 MB  /nix/store/4jw5rjjbpm0xr1sbbrzpjj2b11yabkz3-libcap-2.77-lib
     0.1 MB  /nix/store/4k2vkb5s804gz7p2aq158vgf93cz74rn-supabase_vault
     0.9 MB  /nix/store/4xsk01d4xa5mfi18jfbh521nihsfrsbf-libtiff-4.7.1
     0.5 MB  /nix/store/5486iybnvp4rf20h38vsjb2m4pq23303-ncurses-6.5-dev
     0.5 MB  /nix/store/57bsa2hj39q28rxh52aj10nvn2y29pcx-pgtap-1.3.1
     3.0 MB  /nix/store/5a11qgl1idhb9dz92b6xh5bmzf7wqkh9-pg_graphql-1.2.0
    38.4 MB  /nix/store/5kxz8gxxsjmcs4hs9d0l4vmls3n7hkg5-wrappers-0.4.1
     0.2 MB  /nix/store/5qk5vwcicmq29x11yxs8d955w7qzngcf-pg_tle-1.0.4
     0.4 MB  /nix/store/62b24z1igfh6ws654fhsgnm3fm7j1z3c-lz4-1.10.0-lib
     0.1 MB  /nix/store/6a439x4dmh12i8q57zjm2cxhcyb7i79c-http
     0.2 MB  /nix/store/6af6y3cz4sc7yx96dqgylfrv30x7whbj-wal2json-2.6
     3.6 MB  /nix/store/6dpkcrlpgy2d2wqrs27g7shifq2ylbva-pg_graphql-1.4.2
     0.3 MB  /nix/store/6jpri7g8bpbc3yka7sfk9ygrq7vzr7yp-nghttp2-1.67.1-lib
     0.2 MB  /nix/store/6li9zg9pswfcb3r3585wayv8c71jr13m-libcap-2.77-lib
    39.2 MB  /nix/store/6ls44671pngckfa3s0f6przcn6hp3b98-wrappers-0.4.2
     0.5 MB  /nix/store/6s7wypbdm0ipzh14yzk653zq8phwhraq-lz4-1.10.0
     0.1 MB  /nix/store/70nd2yj8r23mdxbrz92j24k5nr93hci5-pg_cron-1.3.1
     0.1 MB  /nix/store/71kyfljgc85g9sx28vc6g232k73hi4pd-pg_hashids
     0.1 MB  /nix/store/74689daizl7drmrs9p31bh7m9rbcrld7-pgaudit-1.6.1
     0.2 MB  /nix/store/7a5g1v9v0hr8kv51dj7rfpkp886f7cps-vector-0.5.1
     2.4 MB  /nix/store/7higpz3prbd2k32qfb1fsyhrgdmiyldl-util-linux-minimal-2.41.2-lib
     0.3 MB  /nix/store/7jqlx5213a9dj5sihijh71d9vrzkwz7z-pg_repack-1.4.8
     2.3 MB  /nix/store/7nxjgw77sxr2q9bfl03ywkgqvk4figxf-pg_graphql-1.5.11
    52.2 MB  /nix/store/7p6rjylashbnkwa2sz40w7cks5spns12-wrappers-0.5.0
    21.4 MB  /nix/store/7qs87q8vs0il1gcp50d370wxj6h4bjx2-supabase-groonga-14.0.5
   101.5 MB  /nix/store/7v4cbk5hlcwzk9yjy3ac42yylncnrqsc-wrappers-0.5.4
     1.8 MB  /nix/store/843ahdalwl120986c7ilk5q1c47biyap-coreutils-9.8
     0.4 MB  /nix/store/87j9nfa1jvcdx4x7hz5byv0fs9wlqdxp-publicsuffix-list-0-unstable-2024-01-07
     0.5 MB  /nix/store/8ha23qaswya7ak6v1vz0xbq4k7p2i7sk-libcap-ng-0.8.5
     0.1 MB  /nix/store/8id99k3lrbqbjgwxlyy3bkdd86zggc76-pg_stat_monitor
     0.1 MB  /nix/store/8j3qzvhqa5wx3pg399ra7hg26mcchz1x-pg_partman
     0.1 MB  /nix/store/8jhaw8x0ja7rqwfsfwdzi9ld5ph28kgx-pg_net
     1.0 MB  /nix/store/8k346zbc6a05mya3j2lqd0shdinxd7s3-gnugrep-3.12
     0.4 MB  /nix/store/8m2kcfzy01mk0flya5n9n99a8g7fsli3-kexec-tools-2.0.32
     0.2 MB  /nix/store/8xzamn2zwpalzrdqvc99nxbfpxfcwqqv-pg_net-0.13.0
     4.2 MB  /nix/store/92bxysqjh9wv18ybfmsikhpdngplzfz6-systemd-minimal-libs-258.2
    10.0 MB  /nix/store/9322vpzgvmxa4px55w7ybshk1a87hal0-postgresql-15.14-lib
     0.6 MB  /nix/store/9ax7a3wx70ib233y6wm92iq16h73s0d5-audit-4.1.2-unstable-2025-09-06-lib
     0.4 MB  /nix/store/9igc4mjxby5fdrgi5rj4ziiwdqd18k5c-zstd-1.5.7-bin
     2.4 MB  /nix/store/9jjk6xi7fwy8lfzymsh9bizdr7a6ay7w-mecab-0.996
     0.3 MB  /nix/store/9lx045fb86ljiklvy6z01f8b5r9zrkc1-pgsodium-3.1.7
     0.1 MB  /nix/store/9qwnq0ahvc791hm7fgw6klvlsp62cfba-http-1.5.0
     0.1 MB  /nix/store/9sx7mqmq224hnaidbw6bai94qinq43vz-pg_net-0.7.1
     0.5 MB  /nix/store/a0b176pw5faa5l9xmvl74crz4r6al7dd-libsodium-1.0.20
     0.1 MB  /nix/store/a22wpi0bv8q2h17x7cykbfki567rciip-pgaudit-1.7.0
     0.2 MB  /nix/store/a2a0fblpfqr4x03fcj5ipiyd0ar81pwp-pg_stat_monitor-2.1
     9.7 MB  /nix/store/a7zzvrkgal6hds7w190mx265jb2n1m2h-geos-3.14.1
     0.3 MB  /nix/store/ag301vgms6h3a5l1mbmcyl22ijrd8xca-vector-0.8.0
     0.5 MB  /nix/store/ah1vs9pj8f3dx1lkfczxd3lidxj9jq70-lvm2-2.03.37-lib
    11.1 MB  /nix/store/axn17vbdw6da5g35dhfsb42aw4sf2a6k-postgresql-and-plugins-15.14
     2.2 MB  /nix/store/az0zr7lywx12xf86bxvrw1ds1m584jqh-tzdata-2025b
     0.6 MB  /nix/store/b2zx8xygxfcglaw6w2b9nqbkbsf94kcb-libgeotiff-1.7.4
     0.2 MB  /nix/store/bjv5qpny841i3ml1cbrrn7pbxqb2w8i0-pg_net-0.14.0
     0.2 MB  /nix/store/bpgimnp6pcjxif29wy16sg66nsc6712l-pg_tle-1.3.0
   154.0 MB  /nix/store/br5cxgrndggrfzmysa4g0y93bvkf9vzw-postgis-3.3.2
    40.2 MB  /nix/store/bz625najk9nscafylc4968hmcp4mp2n7-icu4c-76.1
     0.3 MB  /nix/store/cjj6p2j1h2ds7ayapjzr5gxi7gdjz31k-pg_repack-1.5.2
     0.3 MB  /nix/store/ckm86lqsa8knk6gkvkibxh9lawdixzf4-libxml2-2.15.1-bin
     3.6 MB  /nix/store/cn39sz1rnz7knw17qkynw609ylnmxaj4-pg_jsonschema-0.3.1
     0.2 MB  /nix/store/cw9gjy21cd3aypixngm5684737s3x1iq-pg_net-0.7
     0.3 MB  /nix/store/cy4nk93wy37z60gi4s0809w94kicmb9s-vector-0.7.4
     0.2 MB  /nix/store/d1yb0arh6k658anwsgl8d5sks6zcqrgm-gcc-13.2.0-libgcc
     0.2 MB  /nix/store/d4920mrd5ps02hmbk4pjp0mvmhi8n1g9-pg_net-0.8.0
     0.1 MB  /nix/store/d7l1znilc6gx5a9a2yj8cc32i2zrvh5g-vector-0.4.0
     0.9 MB  /nix/store/d89wfc961hclhqfrk87w4g8whdyx6ngf-mpfr-4.2.2
     0.2 MB  /nix/store/d9yx9zhqs16ynrinkkvlajs2m36s3gv9-libossp-uuid-1.6.2
     1.2 MB  /nix/store/dlzv7s6ggdqpi2l90g9wqsj7rh26pb0r-curl-8.17.0
   113.9 MB  /nix/store/dqxqh677plafj8hvxcgxdv887am18nnz-wrappers-0.6.1
     0.2 MB  /nix/store/dvb9i3s69j29md1hpx3gpaqqds6530df-gcc-15.2.0-libgcc
     4.1 MB  /nix/store/dvblpblvkmkpqdwkk5phk4q2bl7mzdxf-tpm2-tss-4.1.3
     2.4 MB  /nix/store/dw4d8sys9ma9ac6bnrl1hck6r9ybzhm2-krb5-1.22.1
     0.4 MB  /nix/store/dwmy24cx39bl39df1i8nrj2l4wjpgvd0-libidn2-2.3.7
     2.2 MB  /nix/store/dx08qxv1z09w1hnp0iz3gfa3ggbqcr77-pg_graphql-1.4.4
     1.0 MB  /nix/store/dypwvnkgx6njpn6shlsa5b48d7f8nnn5-brotli-1.1.0-lib
     0.4 MB  /nix/store/f2xj65f17mnznzmxxqj6rr9jdn07r4vb-plpgsql_check-2.8
    47.2 MB  /nix/store/f6zsscjsw73kss0kl3d4syv379ajyyf0-plv8-3.1.10
     0.1 MB  /nix/store/f7gsymj23d0afixjfikl28wxchbpmmmi-pgjwt
     0.1 MB  /nix/store/f7r57hxq7z3l2jp0b041rbsl0bxgykcr-switch-ext-version
     2.1 MB  /nix/store/faszijz4zx1v5l495v5bb3p4k4y07av2-pg_graphql-1.5.1-mergeless
     0.3 MB  /nix/store/fckp65pll6l128j86963x0glf69jl835-pg_repack-1.5.0
     2.1 MB  /nix/store/fiqvcsh43nv1gzidam280flm7jf8cvv7-pg_graphql-1.5.6
     1.3 MB  /nix/store/fqy9nkaahib56gcy0r77qjk7n03cvnfs-zstd-1.5.7
     0.1 MB  /nix/store/fspp2b3vscnwb4l92zc4wz46d4815vsy-glibc-2.40-66-getent
     0.3 MB  /nix/store/g41q9md9rdcr3lkydi6f8zd6fza3h1q4-zstd-1.5.7-dev
     0.3 MB  /nix/store/g8wvpj8xw7csaxg5ks0xzkdhijfylv3k-libpng-apng-1.6.52
     0.2 MB  /nix/store/g94k0xrgyjx58b3200px478cn9js87hj-pgmq-1.5.1
     0.2 MB  /nix/store/ghi7p4h1vrwx4a4v3l0aja4jvssyrylq-libcbor-0.13.0
    13.7 MB  /nix/store/gi3sb46ppz45hllqbav6bsf0a7facyrg-pgrouting-3.4.1
     0.2 MB  /nix/store/gnlar6cvw3zmvqpjiwv1fll7d7lqc0bv-util-linux-minimal-2.41.2-swap
     0.1 MB  /nix/store/gsr5jcmjwf5xpg0c8nss4mvbni4nnaxw-qrencode-4.1.1
     0.6 MB  /nix/store/gysam7z6ak3fvw6vxsi6aapvln8y4lgc-xxHash-0.8.3
     0.1 MB  /nix/store/h0k7f17mqw15q4glyvs1mv33pca7m0v0-index_advisor-0.2.0
     0.3 MB  /nix/store/h1pm1n7vm8a5ykhznrpx7hj9ypfrgvh4-msgpack-c-6.1.0
     9.9 MB  /nix/store/h4qhxh7vwmxgy6w05g0xsf6r1bfi9vga-gcc-15.2.0-lib
     0.1 MB  /nix/store/h5nmwnilsxgar003yb2iacf1bqirhyqx-pg_stat_monitor-1.0
     3.7 MB  /nix/store/h84cj9a22cnlc8cnjf94rsgd9jcbn6kv-db-4.8.30
     0.1 MB  /nix/store/haxp81c080mm9ih6cn9q82rjy1ccmv38-rum
    39.1 MB  /nix/store/hfvij74k1g635qrgqajdsfb2krn8fj2f-icu4c-75.1
     0.4 MB  /nix/store/hm27y1hbsa2k3xqmas2ax6gc9b2m0cmv-libssh2-1.11.0
     9.0 MB  /nix/store/i578g2ws943hl9crhapvy35l6j662xpj-gcc-13.2.0-lib
     0.2 MB  /nix/store/i7z3jfgmj4dbsjxia92ng74dhb958nlp-pg_graphql
     0.7 MB  /nix/store/icbnhxgjixbn20dmn33jyxajmf24fd2l-pgtap-1.3.3
     0.4 MB  /nix/store/igsi8y7q3klpi3c4g1ldfv4mlwfiqx0b-plpgsql_check-2.7
     2.3 MB  /nix/store/iv5577wa0826bn53iqr83bqcmj803bv2-pg_graphql-1.5.9
     0.9 MB  /nix/store/ivpqr1z0akvdjghh30n4jwigf7d7x65i-lerc-4.0.0
     0.3 MB  /nix/store/iwa7i46bbw0mnq7k7bfsrq5zcc781ab9-libedit-20251016-3.1
     0.2 MB  /nix/store/iyxa48rmi0pvy89cvjrpp61i42wkj4qj-libtasn1-4.20.0
     0.6 MB  /nix/store/j0l6xc8kfzfbhym8fnz4pjwgx6jwh39g-libdeflate-1.25
     2.1 MB  /nix/store/j2yk5rfy2ypsrm8qd5xckm5ikia5imp7-pg_graphql-1.5.7
     0.2 MB  /nix/store/jdkxgqihxqxsr4k2sclpnd7s86q1qz97-pgsodium-3.0.4
   101.4 MB  /nix/store/jds5gz4cdrjh0jg8hn10f1l7zj6hhfmg-wrappers-0.5.3
     0.1 MB  /nix/store/jiqlyzpkq2idq9rd4vd9j02b264pg6wm-bzip2-1.0.8
     3.5 MB  /nix/store/jjlds4xk8r6d79gq19pma3f2d0l7c07b-krb5-1.22.1-lib
     0.8 MB  /nix/store/jpz9kf5na20507i3iww35ar9zlwv42qj-krb5-1.22.1-dev
     0.4 MB  /nix/store/jqvri7lc9w4x9i72wmdimlcfh83358sa-libidn2-2.3.8
     3.1 MB  /nix/store/js3xsm649ghc28r1hvrmrwjjghgrs8s5-glibc-2.40-66-bin
     0.3 MB  /nix/store/jvnqrf0wbx8gnzw6mimzbhzg43pk1h84-plpgsql_check-2.2
     0.4 MB  /nix/store/k074vgrqp86mcgd7np0bw2r3i0b0skj8-libssh2-1.11.1
     9.4 MB  /nix/store/k0wfscy8mjfzkhrzm4r6yy8bxs3v4s5w-openssl-3.6.0
     0.1 MB  /nix/store/k12hr62b910v01376q7ac1kqkhhg30zg-pg_net-0.1
     0.9 MB  /nix/store/kawf0kmzaj3lvjf8hv2bdc6c3chgm0ay-cracklib-2.10.3
     4.1 MB  /nix/store/kg79jrqc5cpf4y8xdq4skxfhwnwkv4nq-sqlite-3.51.1
     0.3 MB  /nix/store/kl39qpw93b7wm4bqyhsnl71vrgz6mp6k-libseccomp-2.6.0-lib
     0.1 MB  /nix/store/km3wfavn8mbc327vpxyxl283g1iprpij-switch_timescaledb_loader
     0.1 MB  /nix/store/kn4grpnk3d4h277217lkry4hyvy7xizp-index_advisor
     0.2 MB  /nix/store/knc094z13rjn803zlwl0bhv39qx81di9-pg_net-0.11.0
    47.1 MB  /nix/store/kpm3dhmad0y35vzbwsr6yjfqp1z4pbl6-plv8-3.1.4
     1.3 MB  /nix/store/kv68n8lzzg5fp7dclrz75ak15hv2pcfd-libtpms-0.10.1
     0.2 MB  /nix/store/l6i35y2hlmdz0hvz690h3k4ilq9ahhzy-zlib-1.3.1
     0.2 MB  /nix/store/lhl78g2n79qlbswy8134sx49rzdr5f25-pg_net-0.20.4
     0.3 MB  /nix/store/lkwzjy8dw5z2bj1ij2920qzpl96d75y9-pg_repack-1.5.1
    53.1 MB  /nix/store/lzfs6hbqms9gm3zgqzp46nfa6h79fgp5-mecab-ipadic-2.7.0-20070801
     0.1 MB  /nix/store/lzkba0gdw8sv63smwpf4fd0i3jbcigz5-find-xml-catalogs-hook
     2.2 MB  /nix/store/m0h60l7is9alkrivf0b75dc6zy4s0q6c-libbpf-1.6.2
     0.1 MB  /nix/store/mbb76ijw62506if9caayivz1mc0p3qr0-readline-8.3p1-dev
     0.1 MB  /nix/store/mbgxmacfnn88980nfh0z3wsm2kc7rz1h-plan_filter-0.1
     0.9 MB  /nix/store/mbmd8w5jiq6sfcs81zadj365fb3sha7w-libgpg-error-1.55
    72.4 MB  /nix/store/mca2vsmjqmsvijdzqx1akz3lv9419ain-systemd-258.2
     0.7 MB  /nix/store/mcbrid72x46miha3jmym9l1dxzijknb4-giflib-5.2.2
     0.2 MB  /nix/store/mglbi4dy4kpx7v1dcgf6iincp5x38hsc-lz4-1.10.0-dev
     0.2 MB  /nix/store/mp5sbl0p29v81ss4qqqwprff4nsqmxhd-vector-0.6.0
     0.1 MB  /nix/store/mpa6hjyjr1gmjh1v5m25lqc3f5qydxnw-dns-root-data-2025-04-14
    15.9 MB  /nix/store/mrcx18lcjf77z0l557g1sm46kvrfjx3v-proj-9.7.1
   106.1 MB  /nix/store/mvr0051q63nb9c5m515k2nvpydfcll0v-wrappers-0.5.7
     1.1 MB  /nix/store/mxvqrp4jj6zklxc1i32ra8iapnzynyzc-zstd-1.5.5
     6.6 MB  /nix/store/n2vnr7ycfk6midbzxcwd28qj3bgb50cz-icu4c-75.1-dev
     0.4 MB  /nix/store/na0myil14n0pm6v62xi84rwqz626hzj0-pgsodium-3.1.8
    47.2 MB  /nix/store/nhif8qj2p69fs97nsk5yy8if31ib3jpl-plv8-3.1.5
     0.2 MB  /nix/store/np8cmfb1a7khg4b5jw6mcfkwxkb8gwvx-pg_cron-1.4.2
    24.0 MB  /nix/store/nwkn0xg8gif120nxdwpb19wz0a2sj4mg-sfcgal-2.2.0
     0.1 MB  /nix/store/nz5gmfk8c9wx43igra8b2z20p439fchm-pgtap
     0.1 MB  /nix/store/p0nbl3dlg1nia66vmhj90d05jb9mjqa8-pg_hashids-1.3.0-cd0e1b31d52b394a0df64079406a14a4f7387cd6
     0.5 MB  /nix/store/p17klc3qq4nl9ihfwqfpi8cnqvcf92xz-libxml2-2.15.1-dev
     4.5 MB  /nix/store/p711vqjvd78jz7q6ryzdp5jnnnb48s6j-linux-pam-1.7.1
     0.1 MB  /nix/store/pa13b29ylzim154a5dyp8z52awm2cna2-plv8
     0.9 MB  /nix/store/pdazhhg4l69vz5szllijlpm1ph9i93kq-nettle-3.10.2
     0.1 MB  /nix/store/pknmf91sx9ysc5igw7l84kv5y45fy5s6-overlayfs-on-package
     0.1 MB  /nix/store/psbbmgc2fgvxnn5zh4iz5snkk75qlffr-pgsodium
     0.1 MB  /nix/store/psbmliw54aaxwax8k75xpjrgmzad09sg-pg_net-0.2
     0.1 MB  /nix/store/pv50jbq0cpf8hzz2078vbzia5l9xbknh-npth-1.8
   105.5 MB  /nix/store/pvcv1kbg9kpw8crw06p72hdsn93p8ckz-wrappers-0.5.6
     2.3 MB  /nix/store/pzqq7d1nnx8xkvccmgl51cf1aqim3x59-openssl-3.6.0-dev
     4.1 MB  /nix/store/q1lr86rzsxxbbqdz8m6bcv94saaz8wlv-bash-5.3p3
     2.9 MB  /nix/store/q2ky2b9i91fsfs28x2vzdfkx1im42j1z-pg_graphql-1.1.0
     3.6 MB  /nix/store/q36009ll4v7ay3xv4na856w715nfrbn8-bash-5.2p26
     0.2 MB  /nix/store/q3k500fk8z8yrklklazxdixx0qi7hnwy-pg_cron-1.6.4
     0.2 MB  /nix/store/q3xmwl10qhyagvisqxi7vdhxmhf9hw1q-acl-2.3.2
     0.2 MB  /nix/store/qb1aldsdrapflf26anbrjjf0pl3jx4nf-libassuan-3.0.2
     0.1 MB  /nix/store/qcc3aw9bpyg5n0wf5x9rwcmihxkpkhmf-hypopg-1.3.1
     0.6 MB  /nix/store/qk1l20qwamrc7avi2fk0759dfjdx4ipf-rum-1.3
     0.1 MB  /nix/store/qsqizsdlygh5k7d7ywwx5rg9ypidfhc7-safeupdate-1.4
     0.1 MB  /nix/store/qw2d0aw0jq9halvid5dpnjsgig2gbv5x-protobuf-c-1.5.2-lib
     1.0 MB  /nix/store/r0ba9cj4vknh9lnbrz349sa7ghjilfp0-curl-8.6.0
     1.1 MB  /nix/store/r507xylzsr9fz3qskyfwvl1sng0rwpkm-libarchive-3.8.4-lib
     3.5 MB  /nix/store/r6hng8gs4r5pzsx43zhb7lv4vq6ir2v7-gnutls-3.8.11
     0.1 MB  /nix/store/r897l1zbxydivl1al7m0f5a4ygrybhhk-safeupdate
     0.4 MB  /nix/store/rdqd4midykxxyjf5p9iv1qrnzbhazqnb-pgtap-1.2.0
     0.4 MB  /nix/store/rq56abvj404p0zc314w2mwgrrnkl11lg-publicsuffix-list-0-unstable-2025-11-14
     0.1 MB  /nix/store/rrp604j821hb8di1fmma4fdkk4wvi4qw-pg_net-0.6
     0.2 MB  /nix/store/s2qm7a3q47mykijyzjzpjyrr9kh943vr-kmod-31-lib
     0.7 MB  /nix/store/s48kpwzasghzwp1skd4mdrn5m52h54m7-gmp-with-cxx-6.3.0
     0.1 MB  /nix/store/s8qpkx1fzxdwqhsb86cha84nzqbj3lxl-pgaudit
     4.4 MB  /nix/store/s8wi3pwc2gw1a0468zpamsvfcl2gbigd-elfutils-0.194
     0.6 MB  /nix/store/sbbffcm8ad1linmjywplw55n26baj2mz-readline-8.3p1
     0.2 MB  /nix/store/sf699257mxqa316sg33j3w2wjcwr701z-util-linux-minimal-2.41.2-login
     1.7 MB  /nix/store/sl9cd2h0iklmmnwq5f3q5bsdmzppzj7g-libwebp-1.6.0
     1.4 MB  /nix/store/snvrlxnzmc3y4xwzpmq1jdqwkzxkb67c-openssl-3.6.0-bin
     0.1 MB  /nix/store/sp3gv1jpzxjpxh0i10al7n0z6c5238zq-pgrouting
     0.1 MB  /nix/store/sp6y1lgdmlnpl5qakh56m8bavmv9wyj0-supabase_vault-0.3.1
     0.6 MB  /nix/store/spb76sir6p4ra4ys91m5kf6ccslyzwj4-ngtcp2-1.18.0
    11.7 MB  /nix/store/sskzi968j1q5k3rn8xcjhrgi53wad8n8-timescaledb-2.16.1
     0.2 MB  /nix/store/swr87bhkn6rxwyry7kh71kpc8hm8a47b-pg_net-0.10.0
     3.4 MB  /nix/store/szp01n8zj6r4dzqis3mhi53dz6lrh08v-pg_graphql-1.2.3
     0.1 MB  /nix/store/v23nzdl7n2f19w8dac0ff0w220qf6aj5-http-1.6.1
     3.6 MB  /nix/store/v30arqr8k11qa3pnqx8cw5m2r30b2v5v-pg_graphql-1.4.1
     3.0 MB  /nix/store/vawd4kk3lfqf4430hlcm077b5r2pd74a-gnutar-1.35
     2.7 MB  /nix/store/vaz0prypndg3y6zxmdcpabinwg9dmmq9-libkrb5-1.21.2
     0.3 MB  /nix/store/vghc1hx1p84z5n0zs2m4pwb9vy8aqzrx-postgis
     1.2 MB  /nix/store/vjzhdc08d8qkfrw89qrlkm8grpwkl3ln-brotli-1.2.0-lib
     0.1 MB  /nix/store/vl9m2k11dmilfd33pycxrwghv238c3q2-postgis-switch-extra-steps
     2.9 MB  /nix/store/vly5qxyrn1c9n6pz4va26v4yglglbm9f-pg_graphql-1.0.2
     0.1 MB  /nix/store/vmp550ljxxrzhh21zwch4v1ymgz8hgy9-pgmq-1.4.4
     0.2 MB  /nix/store/vpj7nxx7l4qkaqh91fwxk2d5jvi5i6v3-zlib-1.3.1-dev
     0.2 MB  /nix/store/vsdisjpwkmhvdawpb2j3yfffx8mnc339-pg_net-0.20.3
    25.8 MB  /nix/store/vsw66hvjnd01z8ygkdxvqcrkn1pzb66b-postgresql-15.14
     0.4 MB  /nix/store/vw4dcj2ingb65q0xg2fdqjjzynx1w23q-json-c-0.18
     0.2 MB  /nix/store/w1m88yrmmrg2zvw2030asp4rbaiq84iz-pg_tle-1.0.1
    16.8 MB  /nix/store/w344znmz4py9xqdradpmmy949w4vnda8-boost-1.87.0
     1.2 MB  /nix/store/w4gfg1899mfj46nw0mn1ybys4hd4h5xw-unbound-1.24.2-lib
     0.9 MB  /nix/store/w54lmld8cnjwvk5nvr9xc280rmz7vi9x-xz-5.8.1
    49.1 MB  /nix/store/w62qpjwrmg9ba5hyr8cyl37i16kzcm6w-wrappers-0.4.6
     0.1 MB  /nix/store/w87qnf81rfgxlam0d962rg3an2dpc8fn-plpgsql_check
     1.6 MB  /nix/store/wfk1mrpj1r5f7iyihjnh0jjixr900z7y-libxml2-2.15.1
    94.6 MB  /nix/store/wg340np1j8q0md0313iip51kvvrfni85-mecab-naist-jdic-0.6.3b-20111013
     8.0 MB  /nix/store/wgl866pjxivl8lzd4wyf5g4pa84a7d4x-wrappers
    41.7 MB  /nix/store/wjxpaix0cdpww0bldvzsq2d1bjc6g62b-glibc-2.40-66
     2.1 MB  /nix/store/wriimxdpr2b0ki61mzzl3v0q4p7p4dir-pg_graphql-1.5.1
     0.3 MB  /nix/store/wsg75l5h74gaamnp2my4yqpvkiv42q5w-nghttp2-1.60.0-lib
     0.2 MB  /nix/store/ww8z06wpbmmynqg3g5f74chd7xgfgnpm-xgcc-15.2.0-libgcc
     0.2 MB  /nix/store/wyv7lylgxlxr63vnnf7way52wi8p0bpf-pg_net-0.20.0
     0.1 MB  /nix/store/x1shdaxfan553bylb3jymmr1vrf73sfd-vector
     0.1 MB  /nix/store/x3c5lqlq23fi879rx0xw0mf7hx91q39l-timescaledb
     0.2 MB  /nix/store/x6vk48m697jal2blaqv3d0swlh7nwqdj-libffi-3.5.2
     0.7 MB  /nix/store/x7srw2qr9fwhhxq3asy647wmsqdgjg9d-libapparmor-4.1.2
     1.1 MB  /nix/store/x95bzii77hcvji341w8vq46qak00hiys-libevent-2.1.12
     0.1 MB  /nix/store/xabwkqk9k262k21qlq39xbhvczgc7d3b-pgmq
     0.1 MB  /nix/store/xb05lp39wrlg0zgz4bvirdf819pk899a-pgaudit-1.7.1
     3.7 MB  /nix/store/xgvmfq0wwbqhj70aw0f2payglf6f5l3m-pg_jsonschema-0.3.3
    48.7 MB  /nix/store/xi2xzkz1wvm3ld6pjxn0v0ahd8l4rppy-wrappers-0.4.5
     5.9 MB  /nix/store/xi5rzbwbiim9a5b9z58m5lgf71h0yn6j-p11-kit-0.25.10
     0.3 MB  /nix/store/xlxkm8l1sfck3bn43c6rlkxh5mf14qvq-pcsclite-2.3.0-lib
     0.1 MB  /nix/store/xwiij0cjf04wd1yv6vfd38zmyrckizdq-getent-glibc-2.40-66
     0.1 MB  /nix/store/xy2m68xz863pmai272cx7lnbpimbya1i-pg_jsonschema
     0.1 MB  /nix/store/y15a3dm5fxw4h8mx93cxv95wa3xg1sxm-supautils
   129.4 MB  /nix/store/y182xw6ad3jfzc12444vzl6c8agi0qwa-kytea-0.4.7
     2.4 MB  /nix/store/y7qg7xfrvfh3145c8an9ckig2lx31lq1-pg_graphql-1.6.1
     0.2 MB  /nix/store/yavi60qz9ls7mjf87mkhad621l9p2d4l-xgcc-13.2.0-libgcc
     0.1 MB  /nix/store/ygajbmax036bd0m296ywkaxyjg8ky2sf-pg_hashids-1.2.1
     0.4 MB  /nix/store/yik170dbp3ciq3mnslav0c36jjbp1acv-vector-0.8.2
     0.1 MB  /nix/store/yjy87nzj4251555bnhkgm8afaf46c63l-plan_filter
    32.0 MB  /nix/store/ykax2y8i2a16gjac7qhybxmfflxwbiq7-gdal-3.8.5
     0.3 MB  /nix/store/yl0kaid1ws2b5rjp2n8ak2ck3x95r47w-pg_tle-1.4.0
     0.2 MB  /nix/store/ymav8nb29vsdryddi435xcig3pk7i00q-zlib-1.3.1
     0.3 MB  /nix/store/ywcq3n887napm0r2m7z9grb7zxgf5ila-libmicrohttpd-1.0.2
   119.8 MB  /nix/store/yyhprjipcqv6y041h7g0p6hmzm9rjzbp-wrappers-0.6.2
     1.4 MB  /nix/store/z00f3blsymr76c6h330qgpxx55k44vfi-libgcrypt-1.11.2-lib
     0.2 MB  /nix/store/z1xkc5j75sbgf5lx1y2bgvq4wkpqsxzl-vector-0.6.2
     0.1 MB  /nix/store/z8q1jx7mkyjpk963pbix5lrbgckijzpz-supabase_vault-0.2.8
     2.1 MB  /nix/store/zdi7czwxlblahcz17bkkskxksh559a67-pg_graphql-1.5.0
     0.7 MB  /nix/store/zdis0d8iacya0izy3vi7jmhjz67y8cf6-ncurses-6.5-man
     2.2 MB  /nix/store/zm99a79bffnw4cmpwc7a5cwwn8kwc5cv-libunistring-1.4.1
    48.1 MB  /nix/store/zpfkc0xkygq13znn242caf6ff4jfrayr-wrappers-0.4.4
     0.1 MB  /nix/store/zyps6ggmhj68fysh3c5q7s10sv5baf5l-keyutils-1.6.3-lib

New Dependencies (closure: 2479.4 MB):
     0.3 MB  /nix/store/00m5bdick5dx3d4zrpp2njwpwihwbyx2-vector-0.7.0
   107.2 MB  /nix/store/03k5gpwag7aipm25nsxnavp876w22iq1-wrappers-0.6.0
     4.2 MB  /nix/store/04kpg6rvmahpgmhz4dbzad9nm8y1rpvb-ncurses-6.5
     6.1 MB  /nix/store/09xsph5dvy733610lrgn2d4rgc5ibhig-kbd-2.9.0
    27.0 MB  /nix/store/0dbcc92avf23zmdvsw821yrhvqw12s8m-wrappers-0.3.0
     2.9 MB  /nix/store/0fd2vgzg0qlbnsvr3gyhg1wbzsg2k08w-cryptsetup-2.8.1
     6.4 MB  /nix/store/0kfbzhd8qdsxsd4qf9dkpcd3f916krvr-openssl-3.0.13
     3.1 MB  /nix/store/0lfppmdx1bqfg41wydjwl9y3wrp3rih0-pg_graphql-1.2.2
     0.1 MB  /nix/store/0ljg4yw8siyvsivyg457w2skp0bgd4xk-keyutils-1.6.3-lib
     2.1 MB  /nix/store/0pdr7jzay8f9i3zvd3p8wsarzv9f1s26-pg_graphql-1.5.4
    47.0 MB  /nix/store/0sn6rrav001q2n4znjw4v2z7db6yzmxd-wrappers-0.4.3
     0.2 MB  /nix/store/0vmif2nanhgi07807i8bjymqj664xcwd-libpsl-0.21.5
     8.8 MB  /nix/store/0vv7r6ga11vrj29plj027nl78p51s27c-timescaledb-2.9.1
     0.1 MB  /nix/store/0xjy5cr3h59n0ndlh6gxr3glbb83fc3w-pgroonga
     0.3 MB  /nix/store/0zfyfg75jpkf71bxhjb6q8kprpsp77jb-pgsodium-3.1.6
    41.5 MB  /nix/store/10pd749c2v3m35d4hk5xdfylyfr1hzqz-glibc-2.39-5
     0.1 MB  /nix/store/1199b79za82dwv1nbnjz8bpa08h8vc4l-hypopg
   104.1 MB  /nix/store/161vd1b5491ijhf1s9sykwhahdj8423i-wrappers-0.5.5
     0.2 MB  /nix/store/18lyymxzwh03jsj9q7zdq3lpa1jdnr94-pg_net-0.19.5
     0.1 MB  /nix/store/1c83g5czi5r2913g5pbcwba3a8jps2in-wal2json
     0.3 MB  /nix/store/1lv80gcbfjf70ikxp3mffbvk8mi7hlpn-pgsodium-3.1.5
     0.3 MB  /nix/store/1m2pfwirwdq1cy28v2scw57ry5aji017-kmod-31
     0.3 MB  /nix/store/1n168y3gxdn8b4jrfk5m9m71hq3xm2am-util-linux-minimal-2.41.2-mount
     0.7 MB  /nix/store/1qhz8fshzn41sk26pyvc30cpg7b837cf-gmp-with-cxx-6.3.0
     2.0 MB  /nix/store/1rd6vhxhfblbk3dddi636xjw3avs5z0p-pcre2-10.46
     0.2 MB  /nix/store/1snbg7fzx1bv5lpqxr7icn3mm6qan6pc-attr-2.5.2
     0.9 MB  /nix/store/21kidlr3lklamslvsa3pc78y3kdha61h-pgroonga-3.2.5
     1.9 MB  /nix/store/27g206wjs60cdzsvxvv6ncpcjprk8d6r-libjpeg-turbo-3.1.3
     0.1 MB  /nix/store/2a7sd83gzx6nz4qsijixh3kwq1i0jqrl-pg_repack
     0.8 MB  /nix/store/2axy9bdn36c0pwrs7yh9igw8807c7irs-postgresql-and-plugins-15.14
     0.1 MB  /nix/store/2b5c1ql40la8701vqjap0xz9ij0rysm7-pg_cron
     0.1 MB  /nix/store/2brsh5disikvcvhgnxibg7hm5ybhww1r-receipt
     0.3 MB  /nix/store/2dsn4zffda2ivz2f5mxlwpfi8mb1w9yf-systemd-258.2-dev
     0.1 MB  /nix/store/2p2xn5jmx50856f0fvn7sd8zzz9lypfd-pg_tle
     0.4 MB  /nix/store/2p5qjk1lznfc13qwn2skc264zgh4c3xg-expat-2.7.3
     0.1 MB  /nix/store/2wqm7ivl04f10r6hxvi91w8s0mfaa3j8-hypopg-1.4.1
     8.0 MB  /nix/store/2xajxybfa64wsxpcwrndwlbyizpykn60-pg_partman-5.3.1
     0.1 MB  /nix/store/31blwigfmra9kcxqhkynddzvyggqqb3p-pgjwt-0.2.0
     0.5 MB  /nix/store/36ilshys1vqzxy98lwpg1mxl3gv2c717-libpwquality-1.4.5-lib
     0.2 MB  /nix/store/397hikj37spr81f8yypxpjgf8vs27sii-libxcrypt-4.5.2
     3.5 MB  /nix/store/3bjs7nyh11nn52zg36r7lkmaxkyac1hb-pg_jsonschema-0.2.0
     0.3 MB  /nix/store/3dj2qaaq9mvkri2kphq4gjfbscksi6fy-nghttp3-1.13.1
     1.9 MB  /nix/store/3jdf9aw58nkncyw3d3x36pb37p39k4ia-libunistring-1.1
     1.3 MB  /nix/store/3n15dmd4y0dhplwbx655w4nj1imgr5z7-libfido2-1.16.0
     0.2 MB  /nix/store/40yir8lhldzaxhzfyly5yn2fs6hw5mgi-pg_cron-1.5.2
     0.3 MB  /nix/store/45kspcpwdz33am1szf9910dg2kakxsh5-libpsl-0.21.5
     1.4 MB  /nix/store/4c3h42lwbxr9ibm39v9j8lp5r305bhwj-gnupg-2.4.8
     0.6 MB  /nix/store/4cnn303h6rgfzy0fx0vdyf4p4qhrrhhp-pgroonga-3.0.7
     0.2 MB  /nix/store/4jw5rjjbpm0xr1sbbrzpjj2b11yabkz3-libcap-2.77-lib
     0.1 MB  /nix/store/4k2vkb5s804gz7p2aq158vgf93cz74rn-supabase_vault
     0.9 MB  /nix/store/4xsk01d4xa5mfi18jfbh521nihsfrsbf-libtiff-4.7.1
     0.5 MB  /nix/store/5486iybnvp4rf20h38vsjb2m4pq23303-ncurses-6.5-dev
     0.5 MB  /nix/store/57bsa2hj39q28rxh52aj10nvn2y29pcx-pgtap-1.3.1
     3.0 MB  /nix/store/5a11qgl1idhb9dz92b6xh5bmzf7wqkh9-pg_graphql-1.2.0
    38.4 MB  /nix/store/5kxz8gxxsjmcs4hs9d0l4vmls3n7hkg5-wrappers-0.4.1
     0.2 MB  /nix/store/5qk5vwcicmq29x11yxs8d955w7qzngcf-pg_tle-1.0.4
     0.4 MB  /nix/store/62b24z1igfh6ws654fhsgnm3fm7j1z3c-lz4-1.10.0-lib
     0.1 MB  /nix/store/6a439x4dmh12i8q57zjm2cxhcyb7i79c-http
     0.2 MB  /nix/store/6af6y3cz4sc7yx96dqgylfrv30x7whbj-wal2json-2.6
     3.6 MB  /nix/store/6dpkcrlpgy2d2wqrs27g7shifq2ylbva-pg_graphql-1.4.2
     0.3 MB  /nix/store/6jpri7g8bpbc3yka7sfk9ygrq7vzr7yp-nghttp2-1.67.1-lib
     0.2 MB  /nix/store/6li9zg9pswfcb3r3585wayv8c71jr13m-libcap-2.77-lib
    39.2 MB  /nix/store/6ls44671pngckfa3s0f6przcn6hp3b98-wrappers-0.4.2
     0.5 MB  /nix/store/6s7wypbdm0ipzh14yzk653zq8phwhraq-lz4-1.10.0
     0.1 MB  /nix/store/70nd2yj8r23mdxbrz92j24k5nr93hci5-pg_cron-1.3.1
     0.1 MB  /nix/store/71kyfljgc85g9sx28vc6g232k73hi4pd-pg_hashids
     0.1 MB  /nix/store/74689daizl7drmrs9p31bh7m9rbcrld7-pgaudit-1.6.1
     0.2 MB  /nix/store/7a5g1v9v0hr8kv51dj7rfpkp886f7cps-vector-0.5.1
     2.4 MB  /nix/store/7higpz3prbd2k32qfb1fsyhrgdmiyldl-util-linux-minimal-2.41.2-lib
     0.3 MB  /nix/store/7jqlx5213a9dj5sihijh71d9vrzkwz7z-pg_repack-1.4.8
     2.3 MB  /nix/store/7nxjgw77sxr2q9bfl03ywkgqvk4figxf-pg_graphql-1.5.11
    52.2 MB  /nix/store/7p6rjylashbnkwa2sz40w7cks5spns12-wrappers-0.5.0
    21.4 MB  /nix/store/7qs87q8vs0il1gcp50d370wxj6h4bjx2-supabase-groonga-14.0.5
   101.5 MB  /nix/store/7v4cbk5hlcwzk9yjy3ac42yylncnrqsc-wrappers-0.5.4
     1.8 MB  /nix/store/843ahdalwl120986c7ilk5q1c47biyap-coreutils-9.8
     0.4 MB  /nix/store/87j9nfa1jvcdx4x7hz5byv0fs9wlqdxp-publicsuffix-list-0-unstable-2024-01-07
     0.5 MB  /nix/store/8ha23qaswya7ak6v1vz0xbq4k7p2i7sk-libcap-ng-0.8.5
     0.1 MB  /nix/store/8id99k3lrbqbjgwxlyy3bkdd86zggc76-pg_stat_monitor
     0.1 MB  /nix/store/8j3qzvhqa5wx3pg399ra7hg26mcchz1x-pg_partman
     0.1 MB  /nix/store/8jhaw8x0ja7rqwfsfwdzi9ld5ph28kgx-pg_net
     1.0 MB  /nix/store/8k346zbc6a05mya3j2lqd0shdinxd7s3-gnugrep-3.12
     0.4 MB  /nix/store/8m2kcfzy01mk0flya5n9n99a8g7fsli3-kexec-tools-2.0.32
     0.2 MB  /nix/store/8xzamn2zwpalzrdqvc99nxbfpxfcwqqv-pg_net-0.13.0
     4.2 MB  /nix/store/92bxysqjh9wv18ybfmsikhpdngplzfz6-systemd-minimal-libs-258.2
    10.0 MB  /nix/store/9322vpzgvmxa4px55w7ybshk1a87hal0-postgresql-15.14-lib
     0.6 MB  /nix/store/9ax7a3wx70ib233y6wm92iq16h73s0d5-audit-4.1.2-unstable-2025-09-06-lib
     0.4 MB  /nix/store/9igc4mjxby5fdrgi5rj4ziiwdqd18k5c-zstd-1.5.7-bin
     2.4 MB  /nix/store/9jjk6xi7fwy8lfzymsh9bizdr7a6ay7w-mecab-0.996
     0.3 MB  /nix/store/9lx045fb86ljiklvy6z01f8b5r9zrkc1-pgsodium-3.1.7
     0.1 MB  /nix/store/9qwnq0ahvc791hm7fgw6klvlsp62cfba-http-1.5.0
     0.1 MB  /nix/store/9sx7mqmq224hnaidbw6bai94qinq43vz-pg_net-0.7.1
     0.5 MB  /nix/store/a0b176pw5faa5l9xmvl74crz4r6al7dd-libsodium-1.0.20
     0.1 MB  /nix/store/a22wpi0bv8q2h17x7cykbfki567rciip-pgaudit-1.7.0
     0.2 MB  /nix/store/a2a0fblpfqr4x03fcj5ipiyd0ar81pwp-pg_stat_monitor-2.1
     9.7 MB  /nix/store/a7zzvrkgal6hds7w190mx265jb2n1m2h-geos-3.14.1
     0.3 MB  /nix/store/ag301vgms6h3a5l1mbmcyl22ijrd8xca-vector-0.8.0
     0.5 MB  /nix/store/ah1vs9pj8f3dx1lkfczxd3lidxj9jq70-lvm2-2.03.37-lib
    11.1 MB  /nix/store/axn17vbdw6da5g35dhfsb42aw4sf2a6k-postgresql-and-plugins-15.14
     2.2 MB  /nix/store/az0zr7lywx12xf86bxvrw1ds1m584jqh-tzdata-2025b
     0.6 MB  /nix/store/b2zx8xygxfcglaw6w2b9nqbkbsf94kcb-libgeotiff-1.7.4
     0.2 MB  /nix/store/bjv5qpny841i3ml1cbrrn7pbxqb2w8i0-pg_net-0.14.0
     0.2 MB  /nix/store/bpgimnp6pcjxif29wy16sg66nsc6712l-pg_tle-1.3.0
   154.0 MB  /nix/store/br5cxgrndggrfzmysa4g0y93bvkf9vzw-postgis-3.3.2
    40.2 MB  /nix/store/bz625najk9nscafylc4968hmcp4mp2n7-icu4c-76.1
     0.3 MB  /nix/store/cjj6p2j1h2ds7ayapjzr5gxi7gdjz31k-pg_repack-1.5.2
     0.3 MB  /nix/store/ckm86lqsa8knk6gkvkibxh9lawdixzf4-libxml2-2.15.1-bin
     3.6 MB  /nix/store/cn39sz1rnz7knw17qkynw609ylnmxaj4-pg_jsonschema-0.3.1
     0.2 MB  /nix/store/cw9gjy21cd3aypixngm5684737s3x1iq-pg_net-0.7
     0.3 MB  /nix/store/cy4nk93wy37z60gi4s0809w94kicmb9s-vector-0.7.4
     0.2 MB  /nix/store/d1yb0arh6k658anwsgl8d5sks6zcqrgm-gcc-13.2.0-libgcc
     0.2 MB  /nix/store/d4920mrd5ps02hmbk4pjp0mvmhi8n1g9-pg_net-0.8.0
     0.1 MB  /nix/store/d7l1znilc6gx5a9a2yj8cc32i2zrvh5g-vector-0.4.0
     0.9 MB  /nix/store/d89wfc961hclhqfrk87w4g8whdyx6ngf-mpfr-4.2.2
     0.2 MB  /nix/store/d9yx9zhqs16ynrinkkvlajs2m36s3gv9-libossp-uuid-1.6.2
     1.2 MB  /nix/store/dlzv7s6ggdqpi2l90g9wqsj7rh26pb0r-curl-8.17.0
   113.9 MB  /nix/store/dqxqh677plafj8hvxcgxdv887am18nnz-wrappers-0.6.1
     0.2 MB  /nix/store/dvb9i3s69j29md1hpx3gpaqqds6530df-gcc-15.2.0-libgcc
     4.1 MB  /nix/store/dvblpblvkmkpqdwkk5phk4q2bl7mzdxf-tpm2-tss-4.1.3
     2.4 MB  /nix/store/dw4d8sys9ma9ac6bnrl1hck6r9ybzhm2-krb5-1.22.1
     0.4 MB  /nix/store/dwmy24cx39bl39df1i8nrj2l4wjpgvd0-libidn2-2.3.7
     2.2 MB  /nix/store/dx08qxv1z09w1hnp0iz3gfa3ggbqcr77-pg_graphql-1.4.4
     1.0 MB  /nix/store/dypwvnkgx6njpn6shlsa5b48d7f8nnn5-brotli-1.1.0-lib
     0.4 MB  /nix/store/f2xj65f17mnznzmxxqj6rr9jdn07r4vb-plpgsql_check-2.8
    47.2 MB  /nix/store/f6zsscjsw73kss0kl3d4syv379ajyyf0-plv8-3.1.10
     0.1 MB  /nix/store/f7gsymj23d0afixjfikl28wxchbpmmmi-pgjwt
     0.1 MB  /nix/store/f7r57hxq7z3l2jp0b041rbsl0bxgykcr-switch-ext-version
     2.1 MB  /nix/store/faszijz4zx1v5l495v5bb3p4k4y07av2-pg_graphql-1.5.1-mergeless
     0.3 MB  /nix/store/fckp65pll6l128j86963x0glf69jl835-pg_repack-1.5.0
     2.1 MB  /nix/store/fiqvcsh43nv1gzidam280flm7jf8cvv7-pg_graphql-1.5.6
     1.3 MB  /nix/store/fqy9nkaahib56gcy0r77qjk7n03cvnfs-zstd-1.5.7
     0.1 MB  /nix/store/fspp2b3vscnwb4l92zc4wz46d4815vsy-glibc-2.40-66-getent
     0.3 MB  /nix/store/g41q9md9rdcr3lkydi6f8zd6fza3h1q4-zstd-1.5.7-dev
     0.3 MB  /nix/store/g8wvpj8xw7csaxg5ks0xzkdhijfylv3k-libpng-apng-1.6.52
     0.2 MB  /nix/store/g94k0xrgyjx58b3200px478cn9js87hj-pgmq-1.5.1
     0.2 MB  /nix/store/ghi7p4h1vrwx4a4v3l0aja4jvssyrylq-libcbor-0.13.0
    13.7 MB  /nix/store/gi3sb46ppz45hllqbav6bsf0a7facyrg-pgrouting-3.4.1
     0.2 MB  /nix/store/gnlar6cvw3zmvqpjiwv1fll7d7lqc0bv-util-linux-minimal-2.41.2-swap
     0.1 MB  /nix/store/gsr5jcmjwf5xpg0c8nss4mvbni4nnaxw-qrencode-4.1.1
     0.6 MB  /nix/store/gysam7z6ak3fvw6vxsi6aapvln8y4lgc-xxHash-0.8.3
     0.1 MB  /nix/store/h0k7f17mqw15q4glyvs1mv33pca7m0v0-index_advisor-0.2.0
     0.3 MB  /nix/store/h1pm1n7vm8a5ykhznrpx7hj9ypfrgvh4-msgpack-c-6.1.0
     9.9 MB  /nix/store/h4qhxh7vwmxgy6w05g0xsf6r1bfi9vga-gcc-15.2.0-lib
     0.1 MB  /nix/store/h5nmwnilsxgar003yb2iacf1bqirhyqx-pg_stat_monitor-1.0
     3.7 MB  /nix/store/h84cj9a22cnlc8cnjf94rsgd9jcbn6kv-db-4.8.30
     0.1 MB  /nix/store/haxp81c080mm9ih6cn9q82rjy1ccmv38-rum
    39.1 MB  /nix/store/hfvij74k1g635qrgqajdsfb2krn8fj2f-icu4c-75.1
     0.4 MB  /nix/store/hm27y1hbsa2k3xqmas2ax6gc9b2m0cmv-libssh2-1.11.0
     9.0 MB  /nix/store/i578g2ws943hl9crhapvy35l6j662xpj-gcc-13.2.0-lib
     0.2 MB  /nix/store/i7z3jfgmj4dbsjxia92ng74dhb958nlp-pg_graphql
     0.7 MB  /nix/store/icbnhxgjixbn20dmn33jyxajmf24fd2l-pgtap-1.3.3
     0.4 MB  /nix/store/igsi8y7q3klpi3c4g1ldfv4mlwfiqx0b-plpgsql_check-2.7
     2.3 MB  /nix/store/iv5577wa0826bn53iqr83bqcmj803bv2-pg_graphql-1.5.9
     0.9 MB  /nix/store/ivpqr1z0akvdjghh30n4jwigf7d7x65i-lerc-4.0.0
     0.3 MB  /nix/store/iwa7i46bbw0mnq7k7bfsrq5zcc781ab9-libedit-20251016-3.1
     0.2 MB  /nix/store/iyxa48rmi0pvy89cvjrpp61i42wkj4qj-libtasn1-4.20.0
     0.6 MB  /nix/store/j0l6xc8kfzfbhym8fnz4pjwgx6jwh39g-libdeflate-1.25
     2.1 MB  /nix/store/j2yk5rfy2ypsrm8qd5xckm5ikia5imp7-pg_graphql-1.5.7
     0.2 MB  /nix/store/jdkxgqihxqxsr4k2sclpnd7s86q1qz97-pgsodium-3.0.4
   101.4 MB  /nix/store/jds5gz4cdrjh0jg8hn10f1l7zj6hhfmg-wrappers-0.5.3
     0.1 MB  /nix/store/jiqlyzpkq2idq9rd4vd9j02b264pg6wm-bzip2-1.0.8
     3.5 MB  /nix/store/jjlds4xk8r6d79gq19pma3f2d0l7c07b-krb5-1.22.1-lib
     0.8 MB  /nix/store/jpz9kf5na20507i3iww35ar9zlwv42qj-krb5-1.22.1-dev
     0.4 MB  /nix/store/jqvri7lc9w4x9i72wmdimlcfh83358sa-libidn2-2.3.8
     3.1 MB  /nix/store/js3xsm649ghc28r1hvrmrwjjghgrs8s5-glibc-2.40-66-bin
     0.3 MB  /nix/store/jvnqrf0wbx8gnzw6mimzbhzg43pk1h84-plpgsql_check-2.2
     0.4 MB  /nix/store/k074vgrqp86mcgd7np0bw2r3i0b0skj8-libssh2-1.11.1
     9.4 MB  /nix/store/k0wfscy8mjfzkhrzm4r6yy8bxs3v4s5w-openssl-3.6.0
     0.1 MB  /nix/store/k12hr62b910v01376q7ac1kqkhhg30zg-pg_net-0.1
     0.9 MB  /nix/store/kawf0kmzaj3lvjf8hv2bdc6c3chgm0ay-cracklib-2.10.3
     4.1 MB  /nix/store/kg79jrqc5cpf4y8xdq4skxfhwnwkv4nq-sqlite-3.51.1
     0.3 MB  /nix/store/kl39qpw93b7wm4bqyhsnl71vrgz6mp6k-libseccomp-2.6.0-lib
     0.1 MB  /nix/store/km3wfavn8mbc327vpxyxl283g1iprpij-switch_timescaledb_loader
     0.1 MB  /nix/store/kn4grpnk3d4h277217lkry4hyvy7xizp-index_advisor
     0.2 MB  /nix/store/knc094z13rjn803zlwl0bhv39qx81di9-pg_net-0.11.0
    47.1 MB  /nix/store/kpm3dhmad0y35vzbwsr6yjfqp1z4pbl6-plv8-3.1.4
     1.3 MB  /nix/store/kv68n8lzzg5fp7dclrz75ak15hv2pcfd-libtpms-0.10.1
     0.2 MB  /nix/store/l6i35y2hlmdz0hvz690h3k4ilq9ahhzy-zlib-1.3.1
     0.2 MB  /nix/store/lhl78g2n79qlbswy8134sx49rzdr5f25-pg_net-0.20.4
     0.3 MB  /nix/store/lkwzjy8dw5z2bj1ij2920qzpl96d75y9-pg_repack-1.5.1
    53.1 MB  /nix/store/lzfs6hbqms9gm3zgqzp46nfa6h79fgp5-mecab-ipadic-2.7.0-20070801
     0.1 MB  /nix/store/lzkba0gdw8sv63smwpf4fd0i3jbcigz5-find-xml-catalogs-hook
     2.2 MB  /nix/store/m0h60l7is9alkrivf0b75dc6zy4s0q6c-libbpf-1.6.2
     0.1 MB  /nix/store/mbb76ijw62506if9caayivz1mc0p3qr0-readline-8.3p1-dev
     0.1 MB  /nix/store/mbgxmacfnn88980nfh0z3wsm2kc7rz1h-plan_filter-0.1
     0.9 MB  /nix/store/mbmd8w5jiq6sfcs81zadj365fb3sha7w-libgpg-error-1.55
    72.4 MB  /nix/store/mca2vsmjqmsvijdzqx1akz3lv9419ain-systemd-258.2
     0.7 MB  /nix/store/mcbrid72x46miha3jmym9l1dxzijknb4-giflib-5.2.2
     0.2 MB  /nix/store/mglbi4dy4kpx7v1dcgf6iincp5x38hsc-lz4-1.10.0-dev
     0.2 MB  /nix/store/mp5sbl0p29v81ss4qqqwprff4nsqmxhd-vector-0.6.0
     0.1 MB  /nix/store/mpa6hjyjr1gmjh1v5m25lqc3f5qydxnw-dns-root-data-2025-04-14
    15.9 MB  /nix/store/mrcx18lcjf77z0l557g1sm46kvrfjx3v-proj-9.7.1
   106.1 MB  /nix/store/mvr0051q63nb9c5m515k2nvpydfcll0v-wrappers-0.5.7
     1.1 MB  /nix/store/mxvqrp4jj6zklxc1i32ra8iapnzynyzc-zstd-1.5.5
     6.6 MB  /nix/store/n2vnr7ycfk6midbzxcwd28qj3bgb50cz-icu4c-75.1-dev
     0.4 MB  /nix/store/na0myil14n0pm6v62xi84rwqz626hzj0-pgsodium-3.1.8
    47.2 MB  /nix/store/nhif8qj2p69fs97nsk5yy8if31ib3jpl-plv8-3.1.5
     0.2 MB  /nix/store/np8cmfb1a7khg4b5jw6mcfkwxkb8gwvx-pg_cron-1.4.2
    24.0 MB  /nix/store/nwkn0xg8gif120nxdwpb19wz0a2sj4mg-sfcgal-2.2.0
     0.1 MB  /nix/store/nz5gmfk8c9wx43igra8b2z20p439fchm-pgtap
     0.1 MB  /nix/store/p0nbl3dlg1nia66vmhj90d05jb9mjqa8-pg_hashids-1.3.0-cd0e1b31d52b394a0df64079406a14a4f7387cd6
     0.5 MB  /nix/store/p17klc3qq4nl9ihfwqfpi8cnqvcf92xz-libxml2-2.15.1-dev
     4.5 MB  /nix/store/p711vqjvd78jz7q6ryzdp5jnnnb48s6j-linux-pam-1.7.1
     0.1 MB  /nix/store/pa13b29ylzim154a5dyp8z52awm2cna2-plv8
     0.9 MB  /nix/store/pdazhhg4l69vz5szllijlpm1ph9i93kq-nettle-3.10.2
     0.1 MB  /nix/store/pknmf91sx9ysc5igw7l84kv5y45fy5s6-overlayfs-on-package
     0.1 MB  /nix/store/psbbmgc2fgvxnn5zh4iz5snkk75qlffr-pgsodium
     0.1 MB  /nix/store/psbmliw54aaxwax8k75xpjrgmzad09sg-pg_net-0.2
     0.1 MB  /nix/store/pv50jbq0cpf8hzz2078vbzia5l9xbknh-npth-1.8
   105.5 MB  /nix/store/pvcv1kbg9kpw8crw06p72hdsn93p8ckz-wrappers-0.5.6
     2.3 MB  /nix/store/pzqq7d1nnx8xkvccmgl51cf1aqim3x59-openssl-3.6.0-dev
     4.1 MB  /nix/store/q1lr86rzsxxbbqdz8m6bcv94saaz8wlv-bash-5.3p3
     2.9 MB  /nix/store/q2ky2b9i91fsfs28x2vzdfkx1im42j1z-pg_graphql-1.1.0
     3.6 MB  /nix/store/q36009ll4v7ay3xv4na856w715nfrbn8-bash-5.2p26
     0.2 MB  /nix/store/q3k500fk8z8yrklklazxdixx0qi7hnwy-pg_cron-1.6.4
     0.2 MB  /nix/store/q3xmwl10qhyagvisqxi7vdhxmhf9hw1q-acl-2.3.2
     0.2 MB  /nix/store/qb1aldsdrapflf26anbrjjf0pl3jx4nf-libassuan-3.0.2
     0.1 MB  /nix/store/qcc3aw9bpyg5n0wf5x9rwcmihxkpkhmf-hypopg-1.3.1
     0.6 MB  /nix/store/qk1l20qwamrc7avi2fk0759dfjdx4ipf-rum-1.3
     0.1 MB  /nix/store/qsqizsdlygh5k7d7ywwx5rg9ypidfhc7-safeupdate-1.4
     0.1 MB  /nix/store/qw2d0aw0jq9halvid5dpnjsgig2gbv5x-protobuf-c-1.5.2-lib
     1.0 MB  /nix/store/r0ba9cj4vknh9lnbrz349sa7ghjilfp0-curl-8.6.0
     1.1 MB  /nix/store/r507xylzsr9fz3qskyfwvl1sng0rwpkm-libarchive-3.8.4-lib
     3.5 MB  /nix/store/r6hng8gs4r5pzsx43zhb7lv4vq6ir2v7-gnutls-3.8.11
     0.1 MB  /nix/store/r897l1zbxydivl1al7m0f5a4ygrybhhk-safeupdate
     0.4 MB  /nix/store/rdqd4midykxxyjf5p9iv1qrnzbhazqnb-pgtap-1.2.0
     0.4 MB  /nix/store/rq56abvj404p0zc314w2mwgrrnkl11lg-publicsuffix-list-0-unstable-2025-11-14
     0.1 MB  /nix/store/rrp604j821hb8di1fmma4fdkk4wvi4qw-pg_net-0.6
     0.2 MB  /nix/store/s2qm7a3q47mykijyzjzpjyrr9kh943vr-kmod-31-lib
     0.7 MB  /nix/store/s48kpwzasghzwp1skd4mdrn5m52h54m7-gmp-with-cxx-6.3.0
     0.1 MB  /nix/store/s8qpkx1fzxdwqhsb86cha84nzqbj3lxl-pgaudit
     4.4 MB  /nix/store/s8wi3pwc2gw1a0468zpamsvfcl2gbigd-elfutils-0.194
     0.6 MB  /nix/store/sbbffcm8ad1linmjywplw55n26baj2mz-readline-8.3p1
     0.2 MB  /nix/store/sf699257mxqa316sg33j3w2wjcwr701z-util-linux-minimal-2.41.2-login
     1.7 MB  /nix/store/sl9cd2h0iklmmnwq5f3q5bsdmzppzj7g-libwebp-1.6.0
     1.4 MB  /nix/store/snvrlxnzmc3y4xwzpmq1jdqwkzxkb67c-openssl-3.6.0-bin
     0.1 MB  /nix/store/sp3gv1jpzxjpxh0i10al7n0z6c5238zq-pgrouting
     0.1 MB  /nix/store/sp6y1lgdmlnpl5qakh56m8bavmv9wyj0-supabase_vault-0.3.1
     0.6 MB  /nix/store/spb76sir6p4ra4ys91m5kf6ccslyzwj4-ngtcp2-1.18.0
    11.7 MB  /nix/store/sskzi968j1q5k3rn8xcjhrgi53wad8n8-timescaledb-2.16.1
     0.2 MB  /nix/store/swr87bhkn6rxwyry7kh71kpc8hm8a47b-pg_net-0.10.0
     3.4 MB  /nix/store/szp01n8zj6r4dzqis3mhi53dz6lrh08v-pg_graphql-1.2.3
     0.1 MB  /nix/store/v23nzdl7n2f19w8dac0ff0w220qf6aj5-http-1.6.1
     3.6 MB  /nix/store/v30arqr8k11qa3pnqx8cw5m2r30b2v5v-pg_graphql-1.4.1
     3.0 MB  /nix/store/vawd4kk3lfqf4430hlcm077b5r2pd74a-gnutar-1.35
     2.7 MB  /nix/store/vaz0prypndg3y6zxmdcpabinwg9dmmq9-libkrb5-1.21.2
     0.3 MB  /nix/store/vghc1hx1p84z5n0zs2m4pwb9vy8aqzrx-postgis
     1.2 MB  /nix/store/vjzhdc08d8qkfrw89qrlkm8grpwkl3ln-brotli-1.2.0-lib
     0.1 MB  /nix/store/vl9m2k11dmilfd33pycxrwghv238c3q2-postgis-switch-extra-steps
     2.9 MB  /nix/store/vly5qxyrn1c9n6pz4va26v4yglglbm9f-pg_graphql-1.0.2
     0.1 MB  /nix/store/vmp550ljxxrzhh21zwch4v1ymgz8hgy9-pgmq-1.4.4
     0.2 MB  /nix/store/vpj7nxx7l4qkaqh91fwxk2d5jvi5i6v3-zlib-1.3.1-dev
     0.2 MB  /nix/store/vsdisjpwkmhvdawpb2j3yfffx8mnc339-pg_net-0.20.3
    25.8 MB  /nix/store/vsw66hvjnd01z8ygkdxvqcrkn1pzb66b-postgresql-15.14
     0.4 MB  /nix/store/vw4dcj2ingb65q0xg2fdqjjzynx1w23q-json-c-0.18
     0.2 MB  /nix/store/w1m88yrmmrg2zvw2030asp4rbaiq84iz-pg_tle-1.0.1
    16.8 MB  /nix/store/w344znmz4py9xqdradpmmy949w4vnda8-boost-1.87.0
     1.2 MB  /nix/store/w4gfg1899mfj46nw0mn1ybys4hd4h5xw-unbound-1.24.2-lib
     0.9 MB  /nix/store/w54lmld8cnjwvk5nvr9xc280rmz7vi9x-xz-5.8.1
    49.1 MB  /nix/store/w62qpjwrmg9ba5hyr8cyl37i16kzcm6w-wrappers-0.4.6
     0.1 MB  /nix/store/w87qnf81rfgxlam0d962rg3an2dpc8fn-plpgsql_check
     1.6 MB  /nix/store/wfk1mrpj1r5f7iyihjnh0jjixr900z7y-libxml2-2.15.1
    94.6 MB  /nix/store/wg340np1j8q0md0313iip51kvvrfni85-mecab-naist-jdic-0.6.3b-20111013
     8.0 MB  /nix/store/wgl866pjxivl8lzd4wyf5g4pa84a7d4x-wrappers
    41.7 MB  /nix/store/wjxpaix0cdpww0bldvzsq2d1bjc6g62b-glibc-2.40-66
     2.1 MB  /nix/store/wriimxdpr2b0ki61mzzl3v0q4p7p4dir-pg_graphql-1.5.1
     0.3 MB  /nix/store/wsg75l5h74gaamnp2my4yqpvkiv42q5w-nghttp2-1.60.0-lib
     0.2 MB  /nix/store/ww8z06wpbmmynqg3g5f74chd7xgfgnpm-xgcc-15.2.0-libgcc
     0.2 MB  /nix/store/wyv7lylgxlxr63vnnf7way52wi8p0bpf-pg_net-0.20.0
     0.1 MB  /nix/store/x1shdaxfan553bylb3jymmr1vrf73sfd-vector
     0.1 MB  /nix/store/x3c5lqlq23fi879rx0xw0mf7hx91q39l-timescaledb
     0.2 MB  /nix/store/x6vk48m697jal2blaqv3d0swlh7nwqdj-libffi-3.5.2
     0.7 MB  /nix/store/x7srw2qr9fwhhxq3asy647wmsqdgjg9d-libapparmor-4.1.2
     1.1 MB  /nix/store/x95bzii77hcvji341w8vq46qak00hiys-libevent-2.1.12
     0.1 MB  /nix/store/xabwkqk9k262k21qlq39xbhvczgc7d3b-pgmq
     0.1 MB  /nix/store/xb05lp39wrlg0zgz4bvirdf819pk899a-pgaudit-1.7.1
     3.7 MB  /nix/store/xgvmfq0wwbqhj70aw0f2payglf6f5l3m-pg_jsonschema-0.3.3
    48.7 MB  /nix/store/xi2xzkz1wvm3ld6pjxn0v0ahd8l4rppy-wrappers-0.4.5
     5.9 MB  /nix/store/xi5rzbwbiim9a5b9z58m5lgf71h0yn6j-p11-kit-0.25.10
     0.3 MB  /nix/store/xlxkm8l1sfck3bn43c6rlkxh5mf14qvq-pcsclite-2.3.0-lib
     0.1 MB  /nix/store/xwiij0cjf04wd1yv6vfd38zmyrckizdq-getent-glibc-2.40-66
     0.1 MB  /nix/store/xy2m68xz863pmai272cx7lnbpimbya1i-pg_jsonschema
     0.1 MB  /nix/store/y15a3dm5fxw4h8mx93cxv95wa3xg1sxm-supautils
   129.4 MB  /nix/store/y182xw6ad3jfzc12444vzl6c8agi0qwa-kytea-0.4.7
     2.4 MB  /nix/store/y7qg7xfrvfh3145c8an9ckig2lx31lq1-pg_graphql-1.6.1
     0.2 MB  /nix/store/yavi60qz9ls7mjf87mkhad621l9p2d4l-xgcc-13.2.0-libgcc
     0.1 MB  /nix/store/ygajbmax036bd0m296ywkaxyjg8ky2sf-pg_hashids-1.2.1
     0.4 MB  /nix/store/yik170dbp3ciq3mnslav0c36jjbp1acv-vector-0.8.2
     0.1 MB  /nix/store/yjy87nzj4251555bnhkgm8afaf46c63l-plan_filter
    32.0 MB  /nix/store/ykax2y8i2a16gjac7qhybxmfflxwbiq7-gdal-3.8.5
     0.3 MB  /nix/store/yl0kaid1ws2b5rjp2n8ak2ck3x95r47w-pg_tle-1.4.0
     0.2 MB  /nix/store/ymav8nb29vsdryddi435xcig3pk7i00q-zlib-1.3.1
     0.3 MB  /nix/store/ywcq3n887napm0r2m7z9grb7zxgf5ila-libmicrohttpd-1.0.2
   119.8 MB  /nix/store/yyhprjipcqv6y041h7g0p6hmzm9rjzbp-wrappers-0.6.2
     1.4 MB  /nix/store/z00f3blsymr76c6h330qgpxx55k44vfi-libgcrypt-1.11.2-lib
     0.2 MB  /nix/store/z1xkc5j75sbgf5lx1y2bgvq4wkpqsxzl-vector-0.6.2
     0.1 MB  /nix/store/z8q1jx7mkyjpk963pbix5lrbgckijzpz-supabase_vault-0.2.8
     2.1 MB  /nix/store/zdi7czwxlblahcz17bkkskxksh559a67-pg_graphql-1.5.0
     0.7 MB  /nix/store/zdis0d8iacya0izy3vi7jmhjz67y8cf6-ncurses-6.5-man
     2.2 MB  /nix/store/zm99a79bffnw4cmpwc7a5cwwn8kwc5cv-libunistring-1.4.1
    48.1 MB  /nix/store/zpfkc0xkygq13znn242caf6ff4jfrayr-wrappers-0.4.4
     0.1 MB  /nix/store/zyps6ggmhj68fysh3c5q7s10sv5baf5l-keyutils-1.6.3-lib

PostgreSQL 17 Dependency Changes

Extracting PostgreSQL 17 dependencies...

Package Old New Status

Runtime Closure Size

Size
Old 2206.6 MB
New 2206.6 MB
Delta +0.0 MB
Raw Dependency Closure
Old Dependencies (closure: 2206.6 MB):
     0.2 MB  /nix/store/04jcv2frdfa6nlphwp39flrsrjrn0nw3-pg_net-0.20.4
     4.2 MB  /nix/store/04kpg6rvmahpgmhz4dbzad9nm8y1rpvb-ncurses-6.5
     0.1 MB  /nix/store/08izg82f0fl71sdaaaf0l2zr01vwq0dd-pgrouting
     6.1 MB  /nix/store/09xsph5dvy733610lrgn2d4rgc5ibhig-kbd-2.9.0
     2.9 MB  /nix/store/0fd2vgzg0qlbnsvr3gyhg1wbzsg2k08w-cryptsetup-2.8.1
    59.5 MB  /nix/store/0gfsfmgbyy35akc4waha0cq3gf6xan1r-perl-5.42.0
     6.4 MB  /nix/store/0kfbzhd8qdsxsd4qf9dkpcd3f916krvr-openssl-3.0.13
     0.1 MB  /nix/store/0ljg4yw8siyvsivyg457w2skp0bgd4xk-keyutils-1.6.3-lib
     0.2 MB  /nix/store/0vmif2nanhgi07807i8bjymqj664xcwd-libpsl-0.21.5
    41.5 MB  /nix/store/10pd749c2v3m35d4hk5xdfylyfr1hzqz-glibc-2.39-5
     0.5 MB  /nix/store/15vsq4jac260cmngwz4k7hjg41niz0y1-rum-1.3
     0.1 MB  /nix/store/1in5qfnpa78ziqh1c1kqrcci2241rs91-supabase_vault
     0.3 MB  /nix/store/1m2pfwirwdq1cy28v2scw57ry5aji017-kmod-31
     0.3 MB  /nix/store/1n168y3gxdn8b4jrfk5m9m71hq3xm2am-util-linux-minimal-2.41.2-mount
     0.7 MB  /nix/store/1qhz8fshzn41sk26pyvc30cpg7b837cf-gmp-with-cxx-6.3.0
     2.0 MB  /nix/store/1rd6vhxhfblbk3dddi636xjw3avs5z0p-pcre2-10.46
     0.2 MB  /nix/store/1snbg7fzx1bv5lpqxr7icn3mm6qan6pc-attr-2.5.2
     0.3 MB  /nix/store/1x42ica3rv9bvfvfabp8d4h19shwjfkl-pg_tle-1.4.0
     0.1 MB  /nix/store/24av8nlqsnmmkjb49lhl5d8kjv399kz4-http-1.6.1
     1.9 MB  /nix/store/27g206wjs60cdzsvxvv6ncpcjprk8d6r-libjpeg-turbo-3.1.3
     0.3 MB  /nix/store/2dsn4zffda2ivz2f5mxlwpfi8mb1w9yf-systemd-258.2-dev
     0.4 MB  /nix/store/2p5qjk1lznfc13qwn2skc264zgh4c3xg-expat-2.7.3
     0.1 MB  /nix/store/30gwlrinmvi0jzkr7vphdi3jd2bkhjs8-index_advisor
     0.1 MB  /nix/store/31blwigfmra9kcxqhkynddzvyggqqb3p-pgjwt-0.2.0
     0.5 MB  /nix/store/36ilshys1vqzxy98lwpg1mxl3gv2c717-libpwquality-1.4.5-lib
     0.2 MB  /nix/store/397hikj37spr81f8yypxpjgf8vs27sii-libxcrypt-4.5.2
     0.3 MB  /nix/store/3dj2qaaq9mvkri2kphq4gjfbscksi6fy-nghttp3-1.13.1
     0.2 MB  /nix/store/3fhbqhb2payx783q38l6hwj5b33239f5-pg_net-0.13.0
     1.9 MB  /nix/store/3jdf9aw58nkncyw3d3x36pb37p39k4ia-libunistring-1.1
     0.1 MB  /nix/store/3jv55sswr5179d91hhyz95hmvyq3ygiz-pg_hashids-1.2.1
   106.1 MB  /nix/store/3l14bh137svpp0ghgq7h18fv05xki0h8-wrappers-0.5.7
     1.3 MB  /nix/store/3n15dmd4y0dhplwbx655w4nj1imgr5z7-libfido2-1.16.0
     0.1 MB  /nix/store/3ya1dkaflp9i1q13j90l08qv82yjpknr-supabase_vault-0.2.8
   171.3 MB  /nix/store/40q4672xb38803aqjq0grm446mrkxy6k-postgis-3.3.7
     0.2 MB  /nix/store/44kgn62507cjmdq94yzxd8p63wf0f75m-wal2json-2.6
     0.3 MB  /nix/store/45kspcpwdz33am1szf9910dg2kakxsh5-libpsl-0.21.5
     1.4 MB  /nix/store/4c3h42lwbxr9ibm39v9j8lp5r305bhwj-gnupg-2.4.8
     0.2 MB  /nix/store/4fsi110fj5h5jb2f8gg5idh3ysqmdvdb-pg_net-0.11.0
     0.2 MB  /nix/store/4jw5rjjbpm0xr1sbbrzpjj2b11yabkz3-libcap-2.77-lib
     0.9 MB  /nix/store/4xsk01d4xa5mfi18jfbh521nihsfrsbf-libtiff-4.7.1
     0.1 MB  /nix/store/4yj8rffqwigkxqjackcgvlw36y870vn1-pgaudit
     0.5 MB  /nix/store/5486iybnvp4rf20h38vsjb2m4pq23303-ncurses-6.5-dev
     2.4 MB  /nix/store/5alkfgiswbd3i8k1b99dfcl36hfycisn-pg_graphql-1.6.1
   107.2 MB  /nix/store/5jfkq09q7hrnr46r5vmjcc8635wicsvg-wrappers-0.6.0
     0.3 MB  /nix/store/5k326m108dfzv703gc5nvrvya3qjid5a-pgsodium-3.1.5
     0.4 MB  /nix/store/62b24z1igfh6ws654fhsgnm3fm7j1z3c-lz4-1.10.0-lib
     0.3 MB  /nix/store/6jpri7g8bpbc3yka7sfk9ygrq7vzr7yp-nghttp2-1.67.1-lib
     0.2 MB  /nix/store/6li9zg9pswfcb3r3585wayv8c71jr13m-libcap-2.77-lib
     0.5 MB  /nix/store/6s7wypbdm0ipzh14yzk653zq8phwhraq-lz4-1.10.0
     0.3 MB  /nix/store/6w47n734jkag70f8cyjgjdqwc30yx1m0-vector-0.7.4
     0.3 MB  /nix/store/76vxs143v7awbmimnyj4hra1vrzrmgk3-pgsodium-3.1.6
     2.4 MB  /nix/store/7higpz3prbd2k32qfb1fsyhrgdmiyldl-util-linux-minimal-2.41.2-lib
     0.9 MB  /nix/store/7lgmnnx0454sx00f1pd4l02df4lx6cas-pgroonga-3.2.5
    21.4 MB  /nix/store/7qs87q8vs0il1gcp50d370wxj6h4bjx2-supabase-groonga-14.0.5
     0.2 MB  /nix/store/822kwilqnwwybd0xj3kmnx2acwnwhmh0-pgmq-1.5.1
     1.8 MB  /nix/store/843ahdalwl120986c7ilk5q1c47biyap-coreutils-9.8
     0.4 MB  /nix/store/87j9nfa1jvcdx4x7hz5byv0fs9wlqdxp-publicsuffix-list-0-unstable-2024-01-07
     0.5 MB  /nix/store/8ha23qaswya7ak6v1vz0xbq4k7p2i7sk-libcap-ng-0.8.5
     1.0 MB  /nix/store/8k346zbc6a05mya3j2lqd0shdinxd7s3-gnugrep-3.12
     0.4 MB  /nix/store/8m2kcfzy01mk0flya5n9n99a8g7fsli3-kexec-tools-2.0.32
     0.3 MB  /nix/store/8qg3sk56y302ydwcqnj1m8l7smri02lq-pg_repack-1.4.8
     0.2 MB  /nix/store/8w47fsy9p0n1pfj3qgjqlq88kn9z2gd0-pg_tle-1.0.4
     4.2 MB  /nix/store/92bxysqjh9wv18ybfmsikhpdngplzfz6-systemd-minimal-libs-258.2
     0.6 MB  /nix/store/9ax7a3wx70ib233y6wm92iq16h73s0d5-audit-4.1.2-unstable-2025-09-06-lib
     0.4 MB  /nix/store/9igc4mjxby5fdrgi5rj4ziiwdqd18k5c-zstd-1.5.7-bin
     2.4 MB  /nix/store/9jjk6xi7fwy8lfzymsh9bizdr7a6ay7w-mecab-0.996
     0.5 MB  /nix/store/a0b176pw5faa5l9xmvl74crz4r6al7dd-libsodium-1.0.20
     0.1 MB  /nix/store/a0dcvgicrsbkxm96pf6iq1pbnyxam3yd-pg_net
     0.1 MB  /nix/store/a69qna6xih2qr37m79852jg81dswjcqx-pg_repack
     9.7 MB  /nix/store/a7zzvrkgal6hds7w190mx265jb2n1m2h-geos-3.14.1
     0.4 MB  /nix/store/af0lgwz54rd6zjn9ydgw9462lk8lzyl9-pgsodium-3.1.8
     0.5 MB  /nix/store/aflxg7bhgx0axp1cfv3iwc745n969j50-libxslt-1.1.45
     0.5 MB  /nix/store/ah1vs9pj8f3dx1lkfczxd3lidxj9jq70-lvm2-2.03.37-lib
     0.1 MB  /nix/store/anv1yda87j2vxgnijkhmh9j6z3zkg4af-index_advisor-0.2.0
     2.3 MB  /nix/store/aq9ij7snmmd9l0wmmzh4b570gb48w4mi-pg_graphql-1.5.9
     2.2 MB  /nix/store/az0zr7lywx12xf86bxvrw1ds1m584jqh-tzdata-2025b
     0.6 MB  /nix/store/b2zx8xygxfcglaw6w2b9nqbkbsf94kcb-libgeotiff-1.7.4
     0.3 MB  /nix/store/bsv4acif0g1y1g0qwggvydgb61l52926-pgsodium-3.1.7
     0.2 MB  /nix/store/bycd163zrd7c6fc6z8d3d20cgxrgigrl-pg_cron-1.6.4
    40.2 MB  /nix/store/bz625najk9nscafylc4968hmcp4mp2n7-icu4c-76.1
     0.1 MB  /nix/store/cdwaqir504b0m2bsxmy48z82l8z372x4-supautils
     0.3 MB  /nix/store/ckm86lqsa8knk6gkvkibxh9lawdixzf4-libxml2-2.15.1-bin
     0.1 MB  /nix/store/czbz2kbgh30h9zyl3i80w3hcb8x26b3w-hypopg
     0.2 MB  /nix/store/d1yb0arh6k658anwsgl8d5sks6zcqrgm-gcc-13.2.0-libgcc
     0.9 MB  /nix/store/d89wfc961hclhqfrk87w4g8whdyx6ngf-mpfr-4.2.2
     0.2 MB  /nix/store/d9yx9zhqs16ynrinkkvlajs2m36s3gv9-libossp-uuid-1.6.2
     0.1 MB  /nix/store/dhlfmidk7shn3qrkwn76sqgy7k4wy7gq-pgsodium
     1.2 MB  /nix/store/dlzv7s6ggdqpi2l90g9wqsj7rh26pb0r-curl-8.17.0
     0.2 MB  /nix/store/dvb9i3s69j29md1hpx3gpaqqds6530df-gcc-15.2.0-libgcc
     4.1 MB  /nix/store/dvblpblvkmkpqdwkk5phk4q2bl7mzdxf-tpm2-tss-4.1.3
     2.4 MB  /nix/store/dw4d8sys9ma9ac6bnrl1hck6r9ybzhm2-krb5-1.22.1
     0.4 MB  /nix/store/dwmy24cx39bl39df1i8nrj2l4wjpgvd0-libidn2-2.3.7
     0.3 MB  /nix/store/dyczlsy117b0vcakydbjilw4x5ff5h96-pg_repack-1.5.1
     1.0 MB  /nix/store/dypwvnkgx6njpn6shlsa5b48d7f8nnn5-brotli-1.1.0-lib
    12.2 MB  /nix/store/f0dpdscc6wri0r1ni9p8wnrss9rlwi95-postgresql-and-plugins-17.6
     0.1 MB  /nix/store/f7gsymj23d0afixjfikl28wxchbpmmmi-pgjwt
     0.1 MB  /nix/store/f7r57hxq7z3l2jp0b041rbsl0bxgykcr-switch-ext-version
     0.3 MB  /nix/store/ffnvkz5h2qh5gd07mnkppz39s2irgg4i-pg_repack-1.5.0
     1.3 MB  /nix/store/fqy9nkaahib56gcy0r77qjk7n03cvnfs-zstd-1.5.7
     0.1 MB  /nix/store/fspp2b3vscnwb4l92zc4wz46d4815vsy-glibc-2.40-66-getent
   119.8 MB  /nix/store/fxnsz3mpf542yxcihm9q3rfkcb3wgzb4-wrappers-0.6.2
     0.3 MB  /nix/store/g41q9md9rdcr3lkydi6f8zd6fza3h1q4-zstd-1.5.7-dev
     0.3 MB  /nix/store/g8wvpj8xw7csaxg5ks0xzkdhijfylv3k-libpng-apng-1.6.52
   113.9 MB  /nix/store/gbq7c6gnk5qjz1422ygq4fwja2incxz1-wrappers-0.6.1
     0.2 MB  /nix/store/ghi7p4h1vrwx4a4v3l0aja4jvssyrylq-libcbor-0.13.0
     0.1 MB  /nix/store/gj3sp0k4j1hcbnsl7lw4mclmdfc1j2gd-pg_graphql
     0.2 MB  /nix/store/gnlar6cvw3zmvqpjiwv1fll7d7lqc0bv-util-linux-minimal-2.41.2-swap
     0.1 MB  /nix/store/gsr5jcmjwf5xpg0c8nss4mvbni4nnaxw-qrencode-4.1.1
     0.6 MB  /nix/store/gysam7z6ak3fvw6vxsi6aapvln8y4lgc-xxHash-0.8.3
     0.3 MB  /nix/store/h1pm1n7vm8a5ykhznrpx7hj9ypfrgvh4-msgpack-c-6.1.0
     9.9 MB  /nix/store/h4qhxh7vwmxgy6w05g0xsf6r1bfi9vga-gcc-15.2.0-lib
     3.7 MB  /nix/store/h84cj9a22cnlc8cnjf94rsgd9jcbn6kv-db-4.8.30
    39.1 MB  /nix/store/hfvij74k1g635qrgqajdsfb2krn8fj2f-icu4c-75.1
     0.4 MB  /nix/store/hgxrpsf08cjb3q8bhy5aly090nb30574-vector-0.8.2
     0.4 MB  /nix/store/hm27y1hbsa2k3xqmas2ax6gc9b2m0cmv-libssh2-1.11.0
     0.1 MB  /nix/store/hmdfb1lfnqpz6vbn8p1gn03fbw23b9j9-pgtap
    49.1 MB  /nix/store/hniycmm4gwr24yf2jp1ak8b4i251r2vm-wrappers-0.4.6
     0.3 MB  /nix/store/hrnfbh0w6asq1zq98x7g8yhja05g1zcw-postgis
     0.5 MB  /nix/store/hvnibl0y2v8r7ws51mb08x49wiarczll-pgtap-1.3.1
     0.1 MB  /nix/store/hx4mf0xvx02hzihap1h47xic0ghjlgmm-pgaudit-17.0
     9.0 MB  /nix/store/i578g2ws943hl9crhapvy35l6j662xpj-gcc-13.2.0-lib
     2.3 MB  /nix/store/i5c414lbj2rlnrxgv9md2fywqp8s5kn0-pg_graphql-1.5.11
     0.1 MB  /nix/store/igl3la2nsjgyn4ss16am0k00vcn1zf9r-receipt
     8.0 MB  /nix/store/iv1fqzrgyw4p5j7p3lja3bfgjdrazqpz-pg_partman-5.3.1
     0.9 MB  /nix/store/ivpqr1z0akvdjghh30n4jwigf7d7x65i-lerc-4.0.0
     0.3 MB  /nix/store/iwa7i46bbw0mnq7k7bfsrq5zcc781ab9-libedit-20251016-3.1
     0.1 MB  /nix/store/iyalzzlr5qhbjydg6p5nw4j0m1jh9l8s-libxslt-1.1.45-bin
     0.2 MB  /nix/store/iyxa48rmi0pvy89cvjrpp61i42wkj4qj-libtasn1-4.20.0
     0.6 MB  /nix/store/j0l6xc8kfzfbhym8fnz4pjwgx6jwh39g-libdeflate-1.25
     0.2 MB  /nix/store/j6rk4jdh38jpp639kqj0b72fg1pwpr51-pg_net-0.20.0
     0.1 MB  /nix/store/jaril3b15j30x2ha888qk9jhnydgzsiq-pg_jsonschema
     0.1 MB  /nix/store/jbbvm6g2qrlmxwhjshbk4sv5h54jdbx0-safeupdate-1.4
     0.1 MB  /nix/store/jiqlyzpkq2idq9rd4vd9j02b264pg6wm-bzip2-1.0.8
     3.5 MB  /nix/store/jjlds4xk8r6d79gq19pma3f2d0l7c07b-krb5-1.22.1-lib
     0.8 MB  /nix/store/jpz9kf5na20507i3iww35ar9zlwv42qj-krb5-1.22.1-dev
     0.4 MB  /nix/store/jqvri7lc9w4x9i72wmdimlcfh83358sa-libidn2-2.3.8
     3.1 MB  /nix/store/js3xsm649ghc28r1hvrmrwjjghgrs8s5-glibc-2.40-66-bin
     0.1 MB  /nix/store/jvqwfqhinv4glii47fjscj2i0sfxhy9q-plpgsql_check
     0.4 MB  /nix/store/k074vgrqp86mcgd7np0bw2r3i0b0skj8-libssh2-1.11.1
     9.4 MB  /nix/store/k0wfscy8mjfzkhrzm4r6yy8bxs3v4s5w-openssl-3.6.0
     0.3 MB  /nix/store/k9rbngvf2mr5wjksv8k0gyr817al2n2k-pg_repack-1.5.2
     0.1 MB  /nix/store/kajr21iphzdrlab0rlydvxz81wzs82l8-pg_hashids
     0.9 MB  /nix/store/kawf0kmzaj3lvjf8hv2bdc6c3chgm0ay-cracklib-2.10.3
     4.1 MB  /nix/store/kg79jrqc5cpf4y8xdq4skxfhwnwkv4nq-sqlite-3.51.1
     9.7 MB  /nix/store/kgq3d4l0q4yr2n9j1a2595mgfrhrhxin-postgresql-17.6-lib
     0.1 MB  /nix/store/kj1v7szq9avgl06rjccgjqbfqh72fkcf-safeupdate
     0.3 MB  /nix/store/kl39qpw93b7wm4bqyhsnl71vrgz6mp6k-libseccomp-2.6.0-lib
     1.3 MB  /nix/store/kv68n8lzzg5fp7dclrz75ak15hv2pcfd-libtpms-0.10.1
     0.1 MB  /nix/store/l0n6mivzmpyrk3mla7n1xvwwq02jz9f4-vector
     0.2 MB  /nix/store/l6i35y2hlmdz0hvz690h3k4ilq9ahhzy-zlib-1.3.1
     0.7 MB  /nix/store/l9z72935i7gybwhhbvik6639jbb0yff3-pgtap-1.3.3
     0.2 MB  /nix/store/ldn3jg2pz9acw50yr1p7qf9g3ci09h3s-pg_net-0.19.5
   104.1 MB  /nix/store/lj2qmwb1f6s23i99p5r04g7jz0pwby33-wrappers-0.5.5
   105.5 MB  /nix/store/lkb4d1ahif1ap2fhva7r6vz9jddzzkqn-wrappers-0.5.6
    48.1 MB  /nix/store/lx1wsfnfbyf5yvd3917j4q7ni433xppk-wrappers-0.4.4
    53.1 MB  /nix/store/lzfs6hbqms9gm3zgqzp46nfa6h79fgp5-mecab-ipadic-2.7.0-20070801
     0.1 MB  /nix/store/lzkba0gdw8sv63smwpf4fd0i3jbcigz5-find-xml-catalogs-hook
     2.2 MB  /nix/store/m0h60l7is9alkrivf0b75dc6zy4s0q6c-libbpf-1.6.2
     0.2 MB  /nix/store/m1ci1b93s6nysgwia4k049zm76m5h2df-pg_tle-1.3.0
     1.5 MB  /nix/store/m9j8ybi4ll8lbf261hj5rwkck7ik17fk-flex-2.6.4
     0.1 MB  /nix/store/mbb76ijw62506if9caayivz1mc0p3qr0-readline-8.3p1-dev
     0.9 MB  /nix/store/mbmd8w5jiq6sfcs81zadj365fb3sha7w-libgpg-error-1.55
    72.4 MB  /nix/store/mca2vsmjqmsvijdzqx1akz3lv9419ain-systemd-258.2
     0.7 MB  /nix/store/mcbrid72x46miha3jmym9l1dxzijknb4-giflib-5.2.2
     0.2 MB  /nix/store/mglbi4dy4kpx7v1dcgf6iincp5x38hsc-lz4-1.10.0-dev
     0.1 MB  /nix/store/mpa6hjyjr1gmjh1v5m25lqc3f5qydxnw-dns-root-data-2025-04-14
    15.9 MB  /nix/store/mrcx18lcjf77z0l557g1sm46kvrfjx3v-proj-9.7.1
     1.1 MB  /nix/store/mxvqrp4jj6zklxc1i32ra8iapnzynyzc-zstd-1.5.5
     7.8 MB  /nix/store/n2m66vxpkrdpxsmjmnmf73sd6kn2lfda-wrappers
     6.6 MB  /nix/store/n2vnr7ycfk6midbzxcwd28qj3bgb50cz-icu4c-75.1-dev
    48.7 MB  /nix/store/ns98zg5mab04a7d14qyq0bpxbsw6x9fq-wrappers-0.4.5
     3.5 MB  /nix/store/nvsv3nacw4mlyaw57b49k4fdjyfhnryv-bison-3.8.2
     0.1 MB  /nix/store/nw6xfq2zxz51imazqrdq30ic0f88by37-pg_tle
    24.0 MB  /nix/store/nwkn0xg8gif120nxdwpb19wz0a2sj4mg-sfcgal-2.2.0
     3.7 MB  /nix/store/nyknb3pqc2agf6nbcrrsp1yfrccd41sc-pg_jsonschema-0.3.3
     0.5 MB  /nix/store/p17klc3qq4nl9ihfwqfpi8cnqvcf92xz-libxml2-2.15.1-dev
     4.5 MB  /nix/store/p711vqjvd78jz7q6ryzdp5jnnnb48s6j-linux-pam-1.7.1
     0.3 MB  /nix/store/p7j2a2gd8nyw43p0i26ad65zcpa20pcn-vector-0.7.0
     0.9 MB  /nix/store/pdazhhg4l69vz5szllijlpm1ph9i93kq-nettle-3.10.2
     0.1 MB  /nix/store/pknmf91sx9ysc5igw7l84kv5y45fy5s6-overlayfs-on-package
     0.1 MB  /nix/store/pv50jbq0cpf8hzz2078vbzia5l9xbknh-npth-1.8
     2.3 MB  /nix/store/pzqq7d1nnx8xkvccmgl51cf1aqim3x59-openssl-3.6.0-dev
     4.1 MB  /nix/store/q1lr86rzsxxbbqdz8m6bcv94saaz8wlv-bash-5.3p3
     0.2 MB  /nix/store/q351245xgapjqk27v3fanj9ddq91xpax-vector-0.5.1
     3.6 MB  /nix/store/q36009ll4v7ay3xv4na856w715nfrbn8-bash-5.2p26
     0.2 MB  /nix/store/q3xmwl10qhyagvisqxi7vdhxmhf9hw1q-acl-2.3.2
     0.2 MB  /nix/store/qb1aldsdrapflf26anbrjjf0pl3jx4nf-libassuan-3.0.2
     0.4 MB  /nix/store/qi7x1h0ch66wxjz2sdkmpqx9drjd30lf-plpgsql_check-2.7
     0.8 MB  /nix/store/qkhqk1a75cphnjdcz2bnr9yys5aphv8b-postgresql-and-plugins-17.6
     0.1 MB  /nix/store/qw2d0aw0jq9halvid5dpnjsgig2gbv5x-protobuf-c-1.5.2-lib
     1.0 MB  /nix/store/r0ba9cj4vknh9lnbrz349sa7ghjilfp0-curl-8.6.0
     0.2 MB  /nix/store/r13c6ad1s5nsxvh6ihx2lvhbqkihnq52-vector-0.6.0
     1.1 MB  /nix/store/r507xylzsr9fz3qskyfwvl1sng0rwpkm-libarchive-3.8.4-lib
     3.5 MB  /nix/store/r6hng8gs4r5pzsx43zhb7lv4vq6ir2v7-gnutls-3.8.11
     0.1 MB  /nix/store/rda6wspk84lmfz61rmjiss47149n6hpq-http
     0.4 MB  /nix/store/rq56abvj404p0zc314w2mwgrrnkl11lg-publicsuffix-list-0-unstable-2025-11-14
     0.2 MB  /nix/store/rzvzc4pzh3i2a9yl5729dmgnwfm90ip3-vector-0.6.2
     0.2 MB  /nix/store/s2qm7a3q47mykijyzjzpjyrr9kh943vr-kmod-31-lib
     0.2 MB  /nix/store/s2r5yc0i2g0m6npmpibcs23jwj8i4ly8-pg_stat_monitor-2.1
     0.7 MB  /nix/store/s48kpwzasghzwp1skd4mdrn5m52h54m7-gmp-with-cxx-6.3.0
     4.4 MB  /nix/store/s8wi3pwc2gw1a0468zpamsvfcl2gbigd-elfutils-0.194
     0.6 MB  /nix/store/sbbffcm8ad1linmjywplw55n26baj2mz-readline-8.3p1
     0.2 MB  /nix/store/sf699257mxqa316sg33j3w2wjcwr701z-util-linux-minimal-2.41.2-login
     1.7 MB  /nix/store/sl9cd2h0iklmmnwq5f3q5bsdmzppzj7g-libwebp-1.6.0
     1.4 MB  /nix/store/snvrlxnzmc3y4xwzpmq1jdqwkzxkb67c-openssl-3.6.0-bin
     0.6 MB  /nix/store/spb76sir6p4ra4ys91m5kf6ccslyzwj4-ngtcp2-1.18.0
     1.2 MB  /nix/store/sqjwi1576l9fyzqn5s5s8bc6v73fsaal-gnum4-1.4.20
     0.1 MB  /nix/store/sws4sb9j3gbp6yfy0mic9fp6w1fv9hgj-pgroonga
     0.1 MB  /nix/store/v9pw8mjzzyg1yby2micbziv570nsszh9-rum
     3.0 MB  /nix/store/vawd4kk3lfqf4430hlcm077b5r2pd74a-gnutar-1.35
     2.7 MB  /nix/store/vaz0prypndg3y6zxmdcpabinwg9dmmq9-libkrb5-1.21.2
     1.2 MB  /nix/store/vjzhdc08d8qkfrw89qrlkm8grpwkl3ln-brotli-1.2.0-lib
     0.1 MB  /nix/store/vl9m2k11dmilfd33pycxrwghv238c3q2-postgis-switch-extra-steps
     0.2 MB  /nix/store/vpj7nxx7l4qkaqh91fwxk2d5jvi5i6v3-zlib-1.3.1-dev
    13.7 MB  /nix/store/vq8i7s691m4gz2dbf0pxcvzdhacq4rhz-pgrouting-3.4.1
     0.1 MB  /nix/store/vsvvxrca39js2a4prv62axrjflp1xrsy-plan_filter-0.1
     0.4 MB  /nix/store/vw4dcj2ingb65q0xg2fdqjjzynx1w23q-json-c-0.18
    16.8 MB  /nix/store/w344znmz4py9xqdradpmmy949w4vnda8-boost-1.87.0
     1.2 MB  /nix/store/w4gfg1899mfj46nw0mn1ybys4hd4h5xw-unbound-1.24.2-lib
     0.3 MB  /nix/store/w52nx55rjmwmmffj05i53xdqs8i4rcyk-vector-0.8.0
     0.9 MB  /nix/store/w54lmld8cnjwvk5nvr9xc280rmz7vi9x-xz-5.8.1
     1.6 MB  /nix/store/wfk1mrpj1r5f7iyihjnh0jjixr900z7y-libxml2-2.15.1
    94.6 MB  /nix/store/wg340np1j8q0md0313iip51kvvrfni85-mecab-naist-jdic-0.6.3b-20111013
     0.4 MB  /nix/store/whfw0m8978id10wxrssb0qf5a8h60z6i-plpgsql_check-2.8
    41.7 MB  /nix/store/wjxpaix0cdpww0bldvzsq2d1bjc6g62b-glibc-2.40-66
    52.2 MB  /nix/store/wnpr3ivisc5pyi34j47j6j91hmv5yyii-wrappers-0.5.0
    29.4 MB  /nix/store/wpw9pwh4pwlikws4smn9arr1ymazwf0g-postgresql-17.6
     0.3 MB  /nix/store/wsg75l5h74gaamnp2my4yqpvkiv42q5w-nghttp2-1.60.0-lib
     0.2 MB  /nix/store/ww8z06wpbmmynqg3g5f74chd7xgfgnpm-xgcc-15.2.0-libgcc
     0.2 MB  /nix/store/wxv36yvbmdislxdj57643yn3bdsp1qzy-pg_net-0.20.3
     0.2 MB  /nix/store/x6vk48m697jal2blaqv3d0swlh7nwqdj-libffi-3.5.2
     0.7 MB  /nix/store/x7srw2qr9fwhhxq3asy647wmsqdgjg9d-libapparmor-4.1.2
     1.1 MB  /nix/store/x95bzii77hcvji341w8vq46qak00hiys-libevent-2.1.12
     5.9 MB  /nix/store/xi5rzbwbiim9a5b9z58m5lgf71h0yn6j-p11-kit-0.25.10
     0.3 MB  /nix/store/xlxkm8l1sfck3bn43c6rlkxh5mf14qvq-pcsclite-2.3.0-lib
     0.1 MB  /nix/store/xwiij0cjf04wd1yv6vfd38zmyrckizdq-getent-glibc-2.40-66
   101.5 MB  /nix/store/xzimmxh0ba962ns8hp3pqsklmikfcxjv-wrappers-0.5.4
   129.4 MB  /nix/store/y182xw6ad3jfzc12444vzl6c8agi0qwa-kytea-0.4.7
     0.1 MB  /nix/store/y44x4zsjyhhl8c90xw4ca2yh3zihb7l8-wal2json
     0.1 MB  /nix/store/y904darkh82m6pmpjr47346f19xr7f82-supabase_vault-0.3.1
     0.2 MB  /nix/store/yavi60qz9ls7mjf87mkhad621l9p2d4l-xgcc-13.2.0-libgcc
     0.1 MB  /nix/store/yfpgmqjdly95vcc3b99jwmxc6sy4ap8s-pg_hashids-1.3.0-cd0e1b31d52b394a0df64079406a14a4f7387cd6
   101.4 MB  /nix/store/yjjblr561970bfqf1ivqpxbsrggfs9gl-wrappers-0.5.3
     0.2 MB  /nix/store/ymav8nb29vsdryddi435xcig3pk7i00q-zlib-1.3.1
     0.1 MB  /nix/store/ymx0vr21lr448p24bjww9i2kkp2530fj-pg_partman
     0.3 MB  /nix/store/ywcq3n887napm0r2m7z9grb7zxgf5ila-libmicrohttpd-1.0.2
     0.2 MB  /nix/store/yzkhz8rf3dprxq4q2plscs9pxxwp45ms-pgsodium-3.0.4
     0.1 MB  /nix/store/yzwnjy7kaxgnw9k1vwnmnzsnww36lld1-pg_stat_monitor
     1.4 MB  /nix/store/z00f3blsymr76c6h330qgpxx55k44vfi-libgcrypt-1.11.2-lib
     0.2 MB  /nix/store/z2320501hq8agbhi1mhhsyynyacx25bx-libxslt-1.1.45-dev
     0.1 MB  /nix/store/z24bji14i32kjlkv8qqmzs24va1glrkx-pgmq
     0.1 MB  /nix/store/z29dc8s7qrlr4jgkxw12xs8ph0vgx2f0-hypopg-1.4.1
     0.1 MB  /nix/store/z62b8napw7m7dvh0ggw7ad7yzaiifsfn-pg_cron
     0.1 MB  /nix/store/zd2fh925wfhbnj1gl3ga1ihv9ahagq8x-pgaudit-17.1
     0.7 MB  /nix/store/zdis0d8iacya0izy3vi7jmhjz67y8cf6-ncurses-6.5-man
    32.0 MB  /nix/store/zfx1x3nlbrq4dh5wk6ivb1h1akxvkk7l-gdal-3.8.5
     2.2 MB  /nix/store/zm99a79bffnw4cmpwc7a5cwwn8kwc5cv-libunistring-1.4.1
     0.2 MB  /nix/store/zwid5cwjv2krpy0cxkr5x3hh4f30dd46-pg_net-0.14.0
     0.1 MB  /nix/store/zwjas74wd72shn8g3nln6b90pc42rrjl-plan_filter
     0.1 MB  /nix/store/zyps6ggmhj68fysh3c5q7s10sv5baf5l-keyutils-1.6.3-lib

New Dependencies (closure: 2206.6 MB):
     0.2 MB  /nix/store/04jcv2frdfa6nlphwp39flrsrjrn0nw3-pg_net-0.20.4
     4.2 MB  /nix/store/04kpg6rvmahpgmhz4dbzad9nm8y1rpvb-ncurses-6.5
     0.1 MB  /nix/store/08izg82f0fl71sdaaaf0l2zr01vwq0dd-pgrouting
     6.1 MB  /nix/store/09xsph5dvy733610lrgn2d4rgc5ibhig-kbd-2.9.0
     2.9 MB  /nix/store/0fd2vgzg0qlbnsvr3gyhg1wbzsg2k08w-cryptsetup-2.8.1
    59.5 MB  /nix/store/0gfsfmgbyy35akc4waha0cq3gf6xan1r-perl-5.42.0
     6.4 MB  /nix/store/0kfbzhd8qdsxsd4qf9dkpcd3f916krvr-openssl-3.0.13
     0.1 MB  /nix/store/0ljg4yw8siyvsivyg457w2skp0bgd4xk-keyutils-1.6.3-lib
     0.2 MB  /nix/store/0vmif2nanhgi07807i8bjymqj664xcwd-libpsl-0.21.5
    41.5 MB  /nix/store/10pd749c2v3m35d4hk5xdfylyfr1hzqz-glibc-2.39-5
     0.5 MB  /nix/store/15vsq4jac260cmngwz4k7hjg41niz0y1-rum-1.3
     0.1 MB  /nix/store/1in5qfnpa78ziqh1c1kqrcci2241rs91-supabase_vault
     0.3 MB  /nix/store/1m2pfwirwdq1cy28v2scw57ry5aji017-kmod-31
     0.3 MB  /nix/store/1n168y3gxdn8b4jrfk5m9m71hq3xm2am-util-linux-minimal-2.41.2-mount
     0.7 MB  /nix/store/1qhz8fshzn41sk26pyvc30cpg7b837cf-gmp-with-cxx-6.3.0
     2.0 MB  /nix/store/1rd6vhxhfblbk3dddi636xjw3avs5z0p-pcre2-10.46
     0.2 MB  /nix/store/1snbg7fzx1bv5lpqxr7icn3mm6qan6pc-attr-2.5.2
     0.3 MB  /nix/store/1x42ica3rv9bvfvfabp8d4h19shwjfkl-pg_tle-1.4.0
     0.1 MB  /nix/store/24av8nlqsnmmkjb49lhl5d8kjv399kz4-http-1.6.1
     1.9 MB  /nix/store/27g206wjs60cdzsvxvv6ncpcjprk8d6r-libjpeg-turbo-3.1.3
     0.3 MB  /nix/store/2dsn4zffda2ivz2f5mxlwpfi8mb1w9yf-systemd-258.2-dev
     0.4 MB  /nix/store/2p5qjk1lznfc13qwn2skc264zgh4c3xg-expat-2.7.3
     0.1 MB  /nix/store/30gwlrinmvi0jzkr7vphdi3jd2bkhjs8-index_advisor
     0.1 MB  /nix/store/31blwigfmra9kcxqhkynddzvyggqqb3p-pgjwt-0.2.0
     0.5 MB  /nix/store/36ilshys1vqzxy98lwpg1mxl3gv2c717-libpwquality-1.4.5-lib...*[Comment body truncated]*

@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch 5 times, most recently from eb5b8de to ef65cc5 Compare April 14, 2026 11:52
@staaldraad
staaldraad force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch 3 times, most recently from 6d5e246 to 96ba894 Compare April 28, 2026 16:09
@samrose

samrose commented Jun 10, 2026

Copy link
Copy Markdown
Collaborator

@staaldraad are we still working on this one?

@staaldraad

Copy link
Copy Markdown
Member Author

@staaldraad are we still working on this one?

nope, should be ready. fixed up ansible version to rerun tests

@samrose
samrose requested review from hunleyd and mmlb June 10, 2026 16:51
@mmlb mmlb self-assigned this Jun 10, 2026
@blacksmith-sh

This comment has been minimized.

staaldraad and others added 6 commits July 31, 2026 01:52
Using include directives makes changing the pg_hba.conf on the fly more
flexible. Enabling / disabling ssl enforcement for example only requires
creating or removing a file, leaving the pg_hba.conf untouched. Allowing
for more repeatable and stable processes and no need for regex based
replace or custom parsers.

This will also support the just-in-time access work by allowing jit to
be dynamically enabled/disabled
Dockerfile-supabase (added after this PR was opened) is now the base
image for the PG15/17 build matrix, and didn't have the per-version
pg_hba split applied. include_if_exists requires PG16+, so PG15 keeps
the monolithic pg_hba.conf_15.j2 and drops the include fragments.
@brainrake
brainrake force-pushed the etienne/sec-493-switch-pg_hba-to-use-include-directive branch from bb5a7e1 to 921e4b4 Compare July 30, 2026 22:56
@brainrake

Copy link
Copy Markdown
Collaborator

@staaldraad Rebased onto current develop. Resolved conflicts:

  • setup-postgres.yml — the configure pam block was restructured. Re-inserted the per-version pg_hba tasks into the current structure.
  • Dockerfile-multigres no longer copies pg_hba, it now inherits from a new base image, Dockerfile-supabase (#2160), which didn't exist when this PR was opened but is now the base for the PG15/17 build matrix. It had one unconditional pg_hba.conf.j2 copy, so I added the same PG16+ gating there.

@mkindahl mkindahl left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest a slightly different approach to make it easy for downstream projects.

Comment on lines +28 to +35
include_if_exists pg_hba_users_public_ssl.conf
include_if_exists pg_hba_pam_public_ssl.conf
include_if_exists pg_hba_public_ssl.conf

# otherwise, non ssl enforced rules will apply
include_if_exists pg_hba_users_public.conf
include_if_exists pg_hba_pam_public.conf
include_if_exists pg_hba_public.conf

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm... this hard-codes all configuration file names so if a downstream user (projects that use these Dockerfiles to create their own, for example Multigres), additional files cannot be added easily. There is probably also going to be problems if any files need to be added, renamed, or removed since file names are hard-coded.

A more flexible approach is to create a directory pg_hba.conf.d (following Debian convention for configuration directories) and just use an include_dir directive. In that case, files can be added and removed at will and will not generate any errors.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

makes sense. At the time, I was concerned in ensuring the correct order, I think I did initially misunderstand the following from the docs:

The first record with a matching connection type, client address, requested database, and user name is used to perform authentication. There is no “fall-through” or “backup”: if one record is chosen and the authentication fails, subsequent records are not considered. If no record matches, access is denied.

(originally left pg_hba_public.conf to always exist which was incorrect and allowed sslmode=disable to skip past the ssl enforced because there was a match for host ....)

I'll see about doing this with the include_dir - it needs some Supabase internals changes to understand a pg_hba.conf.d but not a big deal

@blacksmith-sh

This comment has been minimized.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants